Mercurial > lada > lada-client
comparison app/view/search/Query1.js @ 31:897e3100c6da
Changed logic of the Probenauswahl. Now logic works like the BFS version.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Tue, 21 May 2013 17:53:51 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
30:c684f01c0b72 | 31:897e3100c6da |
---|---|
1 Ext.define('Lada.view.search.Query1' ,{ | |
2 extend: 'Ext.form.FieldSet', | |
3 title: 'Variablenbelegung', | |
4 alias: 'widget.query1', | |
5 requires: [ | |
6 'Lada.view.widgets.Mst', | |
7 'Lada.view.widgets.Uwb' | |
8 ], | |
9 initComponent: function() { | |
10 this.items = [ | |
11 { | |
12 id: 'mst', | |
13 xtype: 'mst', | |
14 fieldLabel: 'Messstelle', | |
15 labelWidth: 100 | |
16 }, | |
17 { | |
18 id: 'uwb', | |
19 xtype: 'uwb', | |
20 fieldLabel: 'Umweltbereich', | |
21 labelWidth: 100 | |
22 } | |
23 ]; | |
24 this.callParent(arguments); | |
25 } | |
26 }); |