Mercurial > lada > lada-client
comparison app/store/KoordinatenArt.js @ 1316:f772e70ff723
Added model/store/widget for new stammdaten ort attributes.
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Fri, 03 Feb 2017 13:16:53 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1315:d312e514875c | 1316:f772e70ff723 |
---|---|
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 Kta | |
11 */ | |
12 Ext.define('Lada.store.KoordinatenArt', { | |
13 extend: 'Ext.data.Store', | |
14 model: 'Lada.model.KoordinatenArt', | |
15 sorters: [ | |
16 { | |
17 property: 'id', | |
18 direction: 'ASC' | |
19 }], | |
20 autoLoad: true, | |
21 sortOnLoad: true | |
22 }); |