dustin@975: /* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz dustin@975: * Software engineering by Intevation GmbH dustin@975: * dustin@975: * This file is Free Software under the GNU GPL (v>=3) dustin@975: * and comes with ABSOLUTELY NO WARRANTY! Check out dustin@975: * the documentation coming with IMIS-Labordaten-Application for details. dustin@975: */ dustin@975: dustin@975: /** dustin@975: * Store for Queries for Stammdaten dustin@975: */ dustin@975: Ext.define('Lada.store.StammdatenQueries', { dustin@975: extend: 'Ext.data.Store', dustin@975: model: 'Lada.model.Query', dustin@975: autoLoad: true, dustin@981: /* data: { data: [ dustin@975: {id: '0', name: 'MessprogrammKategorie', type: 'MessprogrammKategorie', sql: 'bogus', description: 'bogusBeschr', filters: []}, dustin@975: {id: '1', name: 'DatensatzErzeuger', type: 'DatensatzErzeuger', sql: 'bogus', description: 'bogusBeschr', filters: []} dustin@981: ]},*/ dustin@975: proxy: { dustin@981: type: 'rest', dustin@999: url: 'lada-server/rest/query/stammdaten', dustin@975: reader: { dustin@975: type: 'json', dustin@975: root: 'data' dustin@975: } dustin@975: } dustin@975: }); dustin@975: