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.ProbeQueries', { raimund@748: extend: 'Ext.data.Store', raimund@748: model: 'Lada.model.Query', dustin@751: autoLoad: true, dustin@751: proxy: { dustin@751: type: 'rest', dustin@999: url: 'lada-server/rest/query/probe', dustin@751: reader: { dustin@751: type: 'json', dustin@751: root: 'data' dustin@751: } dustin@751: } raimund@748: });