raimund@748: /* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz raimund@748: * Software engineering by Intevation GmbH raimund@748: * raimund@748: * This file is Free Software under the GNU GPL (v>=3) raimund@748: * and comes with ABSOLUTELY NO WARRANTY! Check out raimund@748: * the documentation coming with IMIS-Labordaten-Application for details. raimund@748: */ raimund@748: raimund@748: /** raimund@748: * Store for Queries raimund@748: */ raimund@748: Ext.define('Lada.store.MessprogrammQueries', { raimund@748: extend: 'Ext.data.Store', raimund@748: model: 'Lada.model.Query', dustin@975: autoLoad: true, raimund@748: proxy: { raimund@748: type: 'rest', dustin@999: url: 'lada-server/rest/query/messprogramm', raimund@748: reader: { raimund@748: type: 'json', raimund@748: root: 'data' raimund@748: } dustin@751: } raimund@748: });