Mercurial > lada > lada-client
comparison app/store/StatusStufe.js @ 956:45c67a784b31
Added StatusStufe to the StatusGrid. Created Store and Model for StatusStufe
author | Dustin Demuth <dustin@intevation.de> |
---|---|
date | Mon, 09 Nov 2015 13:31:43 +0100 |
parents | |
children | 6a6f2c6fe8ee |
comparison
equal
deleted
inserted
replaced
955:b401846e7817 | 956:45c67a784b31 |
---|---|
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 Status-Werte | |
11 */ | |
12 Ext.define('Lada.store.StatusStufe', { | |
13 extend: 'Ext.data.Store', | |
14 model: 'Lada.model.StatusStufe', | |
15 autoLoad: true, | |
16 storeId: 'StatusStufe' | |
17 }); | |
18 |