# HG changeset patch # User Dustin Demuth # Date 1445961150 -3600 # Node ID 71e2acb1cdd6d582a03be3f085231f6e969a81e6 # Parent 023e622f9551ad334e78396aca14c3683b3d33f7 added StatusWerte Model diff -r 023e622f9551 -r 71e2acb1cdd6 app/model/StatusWerte.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/app/model/StatusWerte.js Tue Oct 27 16:52:30 2015 +0100 @@ -0,0 +1,32 @@ +/* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz + * Software engineering by Intevation GmbH + * + * This file is Free Software under the GNU GPL (v>=3) + * and comes with ABSOLUTELY NO WARRANTY! Check out + * the documentation coming with IMIS-Labordaten-Application for details. + */ + +/** + * Model class for StatusWerte + */ +Ext.define('Lada.model.StatusWerte', { + extend: 'Ext.data.Model', + + fields: [{ + name: 'id' + }, { + name: 'wert' + }], + + idProperty: 'id', + + proxy: { + type: 'rest', + url: 'lada-server/statuswert', + reader: { + type: 'json', + root: 'data' + } + } + +});