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