Mercurial > lada > lada-client
comparison app/store/OrtszuordnungTyp.js @ 1338:d2f06ce4d43a
Use service and widget instead of local store for OrtszuordnungTyp.
author | Tom Gottfried <tom@intevation.de> |
---|---|
date | Fri, 03 Feb 2017 18:01:25 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1337:7194964183f4 | 1338:d2f06ce4d43a |
---|---|
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 * Store for OrtszuordnungTyp | |
11 */ | |
12 Ext.define('Lada.store.OrtszuordnungTyp', { | |
13 extend: 'Ext.data.Store', | |
14 model: 'Lada.model.OrtszuordnungTyp', | |
15 sorters: [ | |
16 { | |
17 property: 'id', | |
18 direction: 'ASC' | |
19 }], | |
20 autoLoad: true, | |
21 sortOnLoad: true | |
22 }); |