torsten@472: /* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz torsten@472: * Software engineering by Intevation GmbH torsten@472: * torsten@472: * This file is Free Software under the GNU GPL (v>=3) torsten@472: * and comes with ABSOLUTELY NO WARRANTY! Check out torsten@472: * the documentation coming with IMIS-Labordaten-Application for details. torsten@472: */ torsten@472: torsten@320: /** torsten@320: * Model class for SQL-Querys torsten@320: */ torsten@235: Ext.define('Lada.model.Query', { torsten@333: extend: 'Lada.model.Base', torsten@235: fields: [ torsten@235: {name: "id"}, torsten@235: {name: "name"}, torsten@235: {name: "description"}, torsten@235: {name: "sql"}, torsten@248: {name: "results"}, rrenkert@422: {name: "filters"} torsten@235: ], torsten@235: proxy: { torsten@248: type: 'rest', torsten@248: url: 'server/rest/query', torsten@235: reader: { torsten@248: type: 'json', torsten@248: root: 'data' torsten@235: } torsten@235: } torsten@235: });