Mercurial > lada > lada-client
comparison app/store/Orte.js @ 1004:9ac03f461ab4 stammdatengrids
Introduced Orte into Stammdatengrids, Added Ortszuordnung. THIS COMMIT IS WORK IN PROGRESS, Proben will NOT work after this commit. Orte can not be edited.
author | Dustin Demuth <dustin@intevation.de> |
---|---|
date | Wed, 20 Jan 2016 12:32:42 +0100 |
parents | app/store/Locations.js@d47ee7439f44 |
children | 9651def05ae6 |
comparison
equal
deleted
inserted
replaced
1003:15d8c64049d1 | 1004:9ac03f461ab4 |
---|---|
1 /* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz | 1 /* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz |
2 * Software engineering by Intevation GmbH | 2 * Software engineering by Intevation GmbH |
3 * | 3 * |
4 * This file is Free Software under the GNU GPL (v>=3) | 4 * This file is Free Software under the GNU GPL (v>=3) |
5 * and comes with ABSOLUTELY NO WARRANTY! Check out | 5 * and comes with ABSOLUTELY NO WARRANTY! Check out |
6 * the documentation coming with IMIS-Labordaten-Application for details. | 6 * the documentation coming with IMIS-Labordaten-Application for details. |
7 */ | 7 */ |
8 | 8 |
9 /** | 9 /** |
10 * Store for Orte | 10 * Store for Orte details |
11 */ | 11 */ |
12 Ext.define('Lada.store.Orte', { | 12 Ext.define('Lada.store.Orte', { |
13 extend: 'Ext.data.Store', | 13 extend: 'Ext.data.Store', |
14 model: 'Lada.model.Ort' | 14 model: 'Lada.model.Ort', |
15 sorters: [{ | |
16 property: 'bezeichnung' | |
17 }], | |
18 autoLoad: true | |
15 }); | 19 }); |