Mercurial > lada > lada-client
comparison app/view/widgets/Nwg.js @ 491:850ccfe5f3c4
Code style.
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Fri, 31 Oct 2014 23:23:32 +0100 |
parents | debfcc7713e3 |
children | 7c0653e8d9f7 |
comparison
equal
deleted
inserted
replaced
490:446e99cfd425 | 491:850ccfe5f3c4 |
---|---|
16 | 16 |
17 /** | 17 /** |
18 * Combobox for Nachweisgrenze. | 18 * Combobox for Nachweisgrenze. |
19 */ | 19 */ |
20 Ext.define('Lada.view.widgets.Nwg' ,{ | 20 Ext.define('Lada.view.widgets.Nwg' ,{ |
21 extend: 'Ext.form.ComboBox', | 21 extend: 'Ext.form.ComboBox', |
22 editable: false, | 22 editable: false, |
23 alias: 'widget.nwg', | 23 alias: 'widget.nwg', |
24 store: nwgStore, | 24 store: nwgStore, |
25 queryMode: 'local', | 25 queryMode: 'local', |
26 displayField:'nwg', | 26 displayField:'nwg', |
27 valueField: 'nwgId', | 27 valueField: 'nwgId', |
28 emptyText:'Messwert kleiner als Nachweisgrenze?', | 28 emptyText:'Messwert kleiner als Nachweisgrenze?', |
29 | |
29 initComponent: function() { | 30 initComponent: function() { |
30 this.callParent(arguments); | 31 this.callParent(arguments); |
31 } | 32 } |
32 }); | 33 }); |