Mercurial > lada > lada-client
comparison app/view/search/Query2.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.Query2' ,{ | |
2 extend: 'Ext.form.FieldSet', | |
3 alias: 'widget.query2', | |
4 title: 'Variablenbelegung (Zeiten in UTC)', | |
5 requires: [ | |
6 'Lada.view.widgets.Datetime' | |
7 ], | |
8 initComponent: function() { | |
9 this.items = [ | |
10 { | |
11 id: 'pbegin', | |
12 xtype: 'datetime', | |
13 fieldLabel: 'Probenbeginn', | |
14 labelWidth: 100 | |
15 } | |
16 ]; | |
17 this.callParent(arguments); | |
18 } | |
19 }); |