raimund@548: /* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz raimund@548: * Software engineering by Intevation GmbH raimund@548: * raimund@548: * This file is Free Software under the GNU GPL (v>=3) raimund@548: * and comes with ABSOLUTELY NO WARRANTY! Check out raimund@548: * the documentation coming with IMIS-Labordaten-Application for details. raimund@548: */ raimund@548: raimund@548: /** raimund@548: * Model for Messgroesse Stammdaten. raimund@548: */ raimund@548: Ext.define('Lada.model.Messgroesse', { raimund@548: extend: 'Ext.data.Model', raimund@548: raimund@548: /** raimund@548: * Fields are: raimund@548: * - id: The unique identifier (Primary key). raimund@548: * - beschreibung: The long description. raimund@548: * - defaultFarbe: raimund@548: * - idfNuklidKey: raimund@548: * - istLeitNuklid: raimund@548: * - eudfNuklidId: raimund@548: * - kennungBvl: raimund@548: */ raimund@548: fields: [{ raimund@548: name: 'id' raimund@548: }, { raimund@548: name: 'beschreibung' raimund@548: }, { raimund@548: name: 'messgroesse' raimund@548: }, { raimund@548: name: 'defaultFarbe' raimund@548: }, { raimund@548: name: 'idfNuklidKey' raimund@548: }, { raimund@548: name: 'istLeitNuklid' raimund@548: }, { raimund@548: name: 'eudfNuklidId' raimund@548: }, { raimund@548: name: 'kennungBvl' raimund@548: }], raimund@548: dustin@766: idProperty: 'id' dustin@766: // other models contain the proxy-configuration at this point. dustin@766: // we don't. You can find the Proxy in in the Store: Lada.store.Messgroessen raimund@548: });