Mercurial > lada > lada-client
comparison app/store/MessprogrammQueries.js @ 748:344330d3d1cd
Added new stores for messprogramm and Probe queries.
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Tue, 28 Apr 2015 10:56:41 +0200 |
parents | |
children | 704bb359c0fe |
comparison
equal
deleted
inserted
replaced
747:3ffecbce17d6 | 748:344330d3d1cd |
---|---|
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.MessprogrammQueries', { | |
13 extend: 'Ext.data.Store', | |
14 model: 'Lada.model.Query', | |
15 proxy: { | |
16 type: 'rest', | |
17 url: 'lada-server/query/messprogramm', | |
18 reader: { | |
19 type: 'json', | |
20 root: 'data' | |
21 } | |
22 }, | |
23 autoLoad: true | |
24 }); |