raimund@1185: /* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz raimund@1185: * Software engineering by Intevation GmbH raimund@1185: * raimund@1185: * This file is Free Software under the GNU GPL (v>=3) raimund@1185: * and comes with ABSOLUTELY NO WARRANTY! Check out raimund@1185: * the documentation coming with IMIS-Labordaten-Application for details. raimund@1185: */ raimund@1185: raimund@1185: /** raimund@1185: * Model class for StatusKombi raimund@1185: */ raimund@1185: Ext.define('Lada.model.StatusKombi', { raimund@1185: extend: 'Ext.data.Model', raimund@1185: raimund@1185: fields: [{ raimund@1185: name: 'id' raimund@1185: }, { raimund@1185: name: 'stufeId', raimund@1185: type: 'int' raimund@1185: }, { raimund@1185: name: 'stufeId', raimund@1185: type: 'int' raimund@1185: }], raimund@1185: raimund@1185: idProperty: 'id', raimund@1185: raimund@1185: proxy: { raimund@1185: type: 'rest', raimund@1185: url: 'lada-server/rest/statuskombi', raimund@1185: reader: { raimund@1185: type: 'json', raimund@1185: root: 'data' raimund@1185: } raimund@1185: } raimund@1185: }); raimund@1185: