Mercurial > lada > lada-client
comparison app/store/Orte.js @ 1008:9651def05ae6
merged.
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Wed, 20 Jan 2016 17:45:58 +0100 |
parents | d47ee7439f44 9ac03f461ab4 |
children | 65ea1c2a8c98 |
comparison
equal
deleted
inserted
replaced
1007:23bfcbdb4527 | 1008:9651def05ae6 |
---|---|
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 }); |