comparison app/model/StaUmwelt.js @ 488:f7446ebfe5d0

Added and updated models.
author Raimund Renkert <raimund.renkert@intevation.de>
date Fri, 31 Oct 2014 21:10:35 +0100
parents
children
comparison
equal deleted inserted replaced
487:a05cbc6e63cb 488:f7446ebfe5d0
1 /* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz
2 * Software engineering by Intevation GmbH
3 *
4 * This file is Free Software under the GNU GPL (v>=3)
5 * and comes with ABSOLUTELY NO WARRANTY! Check out
6 * the documentation coming with IMIS-Labordaten-Application for details.
7 */
8
9 /**
10 * Model class for Umweltbereich Stammdaten.
11 */
12 Ext.define('Lada.model.StaUmwelt', {
13 extend: 'Ext.data.Model',
14
15 /**
16 * Fields are:
17 * - id: The unique identifer (Primary key)
18 * - beschreibung: The long description.
19 * - umweltBereich:
20 * - mehId:
21 */
22 fields: [{
23 name: 'id'
24 }, {
25 name: 'beschreibung'
26 }, {
27 name: 'mehId'
28 }, {
29 name: 'umweltBereich'
30 }],
31
32 idProperty: 'id',
33
34 proxy: {
35 type: 'rest',
36 url: 'server/rest/sta_umwelt',
37 reader: {
38 type: 'json',
39 root: 'data'
40 }
41 }
42 });

http://lada.wald.intevation.org