comparison app/store/MessungQueries.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 Queries
11 */
12 Ext.define('Lada.store.MessungQueries', {
13 extend: 'Ext.data.Store',
14 model: 'Lada.model.Query',
15 autoLoad: true,
16 proxy: {
17 type: 'rest',
18 url: 'lada-server/rest/query/messung',
19 reader: {
20 type: 'json',
21 root: 'data'
22 }
23 }
24 });

http://lada.wald.intevation.org