Mercurial > lada > lada-client
changeset 946:71e2acb1cdd6
added StatusWerte Model
author | Dustin Demuth <dustin@intevation.de> |
---|---|
date | Tue, 27 Oct 2015 16:52:30 +0100 |
parents | 023e622f9551 |
children | ee8837ad99f8 |
files | app/model/StatusWerte.js |
diffstat | 1 files changed, 32 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /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' + } + } + +});