comparison app/view/widgets/Netzbetreiber.js @ 497:7c0653e8d9f7

Fixed some js related issues (unused vars, arrays, etc.) and code style.
author Raimund Renkert <raimund.renkert@intevation.de>
date Thu, 06 Nov 2014 10:38:17 +0100
parents d07e5086a64b
children c1b77fb96b01
comparison
equal deleted inserted replaced
496:d07e5086a64b 497:7c0653e8d9f7
1 /* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz 1 /* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz
2 * Software engineering by Intevation GmbH 2 * Software engineering by Intevation GmbH
3 * 3 *
4 * This file is Free Software under the GNU GPL (v>=3) 4 * This file is Free Software under the GNU GPL (v>=3)
5 * and comes with ABSOLUTELY NO WARRANTY! Check out 5 * and comes with ABSOLUTELY NO WARRANTY! Check out
6 * the documentation coming with IMIS-Labordaten-Application for details. 6 * the documentation coming with IMIS-Labordaten-Application for details.
7 */ 7 */
8 8
9 /** 9 /**
10 * Combobox for Netzbetreiber 10 * Combobox for Netzbetreiber
11 */ 11 */
12 Ext.define('Lada.view.widgets.Netzbetreiber' ,{ 12 Ext.define('Lada.view.widgets.Netzbetreiber', {
13 extend: 'Ext.form.ComboBox', 13 extend: 'Ext.form.ComboBox',
14 require: ['Lada.store.StaNetzbetreiber'], 14 require: ['Lada.store.StaNetzbetreiber'],
15 alias: 'widget.netzbetreiber', 15 alias: 'widget.netzbetreiber',
16 store: 'StaNetzbetreiber', 16 store: 'StaNetzbetreiber',
17 displayField:'netzbetreiber', 17 displayField: 'netzbetreiber',
18 valueField: 'id', 18 valueField: 'id',
19 emptyText:'Wählen Sie einen Netzbetreiber', 19 emptyText: 'Wählen Sie einen Netzbetreiber',
20 // Enable filtering of comboboxes 20 // Enable filtering of comboboxes
21 autoSelect: false, 21 autoSelect: false,
22 queryMode: 'local', 22 queryMode: 'local',
23 triggerAction : 'all', 23 triggerAction: 'all',
24 typeAhead: false, 24 typeAhead: false,
25 minChars: 0, 25 minChars: 0,
26 26
27 initComponent: function() { 27 initComponent: function() {
28 this.store = Ext.data.StoreManager.get('staNetzbetreiber'); 28 this.store = Ext.data.StoreManager.get('staNetzbetreiber');
30 this.store = Ext.create('Lada.store.StaNetzbetreiber'); 30 this.store = Ext.create('Lada.store.StaNetzbetreiber');
31 } 31 }
32 this.callParent(arguments); 32 this.callParent(arguments);
33 } 33 }
34 }); 34 });
35

http://lada.wald.intevation.org