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', raimund@491: raimund@491: fields: [{ raimund@491: name: "id" raimund@491: }, { raimund@491: name: "name" raimund@491: }, { raimund@491: name: "description" raimund@491: }, { raimund@491: name: "sql" raimund@491: }, { raimund@491: name: "results" raimund@491: }, { raimund@491: name: "filters" raimund@491: }], raimund@491: 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: });