annotate app/model/StatusKombi.js @ 1293:16a80ca16732

map feature visibility, selection and grid layout messpunkt layer is now visible per default when in editing mode on selection in map, the form is updated ortszuordnung buttons should not render over grid anymore
author Maximilian Krambach <mkrambach@intevation.de>
date Wed, 01 Feb 2017 19:38:06 +0100
parents 5b5d9d7a771a
children
rev   line source
1217
4270da0f7d3b Merged branch schema-update into default.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
1 /* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz
4270da0f7d3b Merged branch schema-update into default.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
2 * Software engineering by Intevation GmbH
4270da0f7d3b Merged branch schema-update into default.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
3 *
4270da0f7d3b Merged branch schema-update into default.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
4 * This file is Free Software under the GNU GPL (v>=3)
4270da0f7d3b Merged branch schema-update into default.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
5 * and comes with ABSOLUTELY NO WARRANTY! Check out
4270da0f7d3b Merged branch schema-update into default.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
6 * the documentation coming with IMIS-Labordaten-Application for details.
4270da0f7d3b Merged branch schema-update into default.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
7 */
4270da0f7d3b Merged branch schema-update into default.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
8
4270da0f7d3b Merged branch schema-update into default.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
9 /**
4270da0f7d3b Merged branch schema-update into default.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
10 * Model class for StatusKombi
4270da0f7d3b Merged branch schema-update into default.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
11 */
4270da0f7d3b Merged branch schema-update into default.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
12 Ext.define('Lada.model.StatusKombi', {
4270da0f7d3b Merged branch schema-update into default.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
13 extend: 'Ext.data.Model',
4270da0f7d3b Merged branch schema-update into default.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
14
4270da0f7d3b Merged branch schema-update into default.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
15 fields: [{
4270da0f7d3b Merged branch schema-update into default.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
16 name: 'id'
4270da0f7d3b Merged branch schema-update into default.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
17 }, {
1224
5b5d9d7a771a Adapt StatusKombi model to what it's proxy actually delivers.
Tom Gottfried <tom@intevation.de>
parents: 1217
diff changeset
18 name: 'statusStufe',
5b5d9d7a771a Adapt StatusKombi model to what it's proxy actually delivers.
Tom Gottfried <tom@intevation.de>
parents: 1217
diff changeset
19 type: 'object'
1217
4270da0f7d3b Merged branch schema-update into default.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
20 }, {
1224
5b5d9d7a771a Adapt StatusKombi model to what it's proxy actually delivers.
Tom Gottfried <tom@intevation.de>
parents: 1217
diff changeset
21 name: 'statusWert',
5b5d9d7a771a Adapt StatusKombi model to what it's proxy actually delivers.
Tom Gottfried <tom@intevation.de>
parents: 1217
diff changeset
22 type: 'object'
1217
4270da0f7d3b Merged branch schema-update into default.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
23 }],
4270da0f7d3b Merged branch schema-update into default.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
24
4270da0f7d3b Merged branch schema-update into default.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
25 idProperty: 'id',
4270da0f7d3b Merged branch schema-update into default.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
26
4270da0f7d3b Merged branch schema-update into default.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
27 proxy: {
4270da0f7d3b Merged branch schema-update into default.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
28 type: 'rest',
4270da0f7d3b Merged branch schema-update into default.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
29 url: 'lada-server/rest/statuskombi',
4270da0f7d3b Merged branch schema-update into default.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
30 reader: {
4270da0f7d3b Merged branch schema-update into default.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
31 type: 'json',
4270da0f7d3b Merged branch schema-update into default.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
32 root: 'data'
4270da0f7d3b Merged branch schema-update into default.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
33 }
4270da0f7d3b Merged branch schema-update into default.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
34 }
4270da0f7d3b Merged branch schema-update into default.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
35 });
4270da0f7d3b Merged branch schema-update into default.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
36

http://lada.wald.intevation.org