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