view app/model/StatusWerte.js @ 946:71e2acb1cdd6

added StatusWerte Model
author Dustin Demuth <dustin@intevation.de>
date Tue, 27 Oct 2015 16:52:30 +0100
parents
children 45c67a784b31
line wrap: on
line source
/* 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'
        }
    }

});

http://lada.wald.intevation.org