Mercurial > lada > lada-client
comparison app/store/MessungenList.js @ 1076:e32c10cf5499
Added model/store, view and controller for messung list.
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Fri, 08 Apr 2016 19:32:02 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1075:d23427c68285 | 1076:e32c10cf5499 |
---|---|
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 Messungen, it is used in the {@link Lada.view.grid.MessungenList} | |
11 */ | |
12 Ext.define('Lada.store.MessungenList', { | |
13 extend: 'Ext.data.Store', | |
14 model: 'Lada.model.MessungList', | |
15 pageSize: 50, | |
16 remoteSort: true | |
17 }); |