Mercurial > lada > lada-client
view app/view/search/Query1.js @ 238:2a23fcca8ead
On Default the proben list will have no columns at all. The are added
dynamically later when the user selects a search query.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Tue, 23 Jul 2013 11:29:37 +0200 |
parents | 897e3100c6da |
children |
line wrap: on
line source
Ext.define('Lada.view.search.Query1' ,{ extend: 'Ext.form.FieldSet', title: 'Variablenbelegung', alias: 'widget.query1', requires: [ 'Lada.view.widgets.Mst', 'Lada.view.widgets.Uwb' ], initComponent: function() { this.items = [ { id: 'mst', xtype: 'mst', fieldLabel: 'Messstelle', labelWidth: 100 }, { id: 'uwb', xtype: 'uwb', fieldLabel: 'Umweltbereich', labelWidth: 100 } ]; this.callParent(arguments); } });