Mercurial > lada > lada-client
comparison app/view/widgets/Uwb.js @ 33:a35119566841
Fetch UWB dynamically.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Wed, 22 May 2013 14:22:46 +0200 |
parents | 897e3100c6da |
children | 19eab475bbe5 |
comparison
equal
deleted
inserted
replaced
32:162552e878e7 | 33:a35119566841 |
---|---|
1 // Combobox for Umweltbereich | 1 // Combobox for Umweltbereich |
2 Ext.define('Lada.view.widgets.Uwb' ,{ | 2 Ext.define('Lada.view.widgets.Uwb' ,{ |
3 extend: 'Ext.form.ComboBox', | 3 extend: 'Ext.form.ComboBox', |
4 alias: 'widget.uwb', | 4 alias: 'widget.uwb', |
5 store: 'Sql', | 5 store: 'Uwb', |
6 displayField:'name', | 6 displayField:'umwId', |
7 valueField: 'id', | 7 valueField: 'umwId', |
8 emptyText:'Wählen Sie eine Abfrage', | 8 emptyText:'Wählen Sie einen Umweltbereich', |
9 initComponent: function() { | 9 initComponent: function() { |
10 this.callParent(arguments); | 10 this.callParent(arguments); |
11 } | 11 } |
12 }); | 12 }); |