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