Mercurial > lada > lada-client
comparison app/view/widgets/Betriebsart.js @ 490:446e99cfd425
Updated views and controllers using the new model and stores.
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Fri, 31 Oct 2014 21:28:31 +0100 |
parents | debfcc7713e3 |
children | 7c0653e8d9f7 |
comparison
equal
deleted
inserted
replaced
489:6056a7fd9aa2 | 490:446e99cfd425 |
---|---|
16 | 16 |
17 /** | 17 /** |
18 * Combobox for Betriebsart | 18 * Combobox for Betriebsart |
19 */ | 19 */ |
20 Ext.define('Lada.view.widgets.Betriebsart' ,{ | 20 Ext.define('Lada.view.widgets.Betriebsart' ,{ |
21 extend: 'Ext.form.ComboBox', | 21 extend: 'Ext.form.ComboBox', |
22 alias: 'widget.betriebsart', | 22 alias: 'widget.betriebsart', |
23 store: betriebsartStore, | 23 store: betriebsartStore, |
24 queryMode: 'local', | 24 queryMode: 'local', |
25 displayField:'betriebsart', | 25 displayField:'betriebsart', |
26 valueField: 'betriebsartId', | 26 valueField: 'betriebsartId', |
27 emptyText:'Wählen Sie eine Betriebsart', | 27 emptyText:'Wählen Sie eine Betriebsart', |
28 | |
28 initComponent: function() { | 29 initComponent: function() { |
29 this.callParent(arguments); | 30 this.callParent(arguments); |
30 } | 31 } |
31 }); | 32 }); |