raimund@1316: /* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz
raimund@1316:  * Software engineering by Intevation GmbH
raimund@1316:  *
raimund@1316:  * This file is Free Software under the GNU GPL (v>=3)
raimund@1316:  * and comes with ABSOLUTELY NO WARRANTY! Check out
raimund@1316:  * the documentation coming with IMIS-Labordaten-Application for details.
raimund@1316:  */
raimund@1316: 
raimund@1316: /**
raimund@1316:  * Store for Kta
raimund@1316:  */
raimund@1316: Ext.define('Lada.store.KoordinatenArt', {
raimund@1316:     extend: 'Ext.data.Store',
raimund@1316:     model: 'Lada.model.KoordinatenArt',
raimund@1316:     sorters: [
raimund@1316:         {
raimund@1316:             property: 'id',
raimund@1316:             direction: 'ASC'
raimund@1316:     }],
raimund@1316:     autoLoad: true,
raimund@1316:     sortOnLoad: true
raimund@1316: });