comparison app/view/widget/Betriebsart.js @ 548:d47ee7439f44

Added new js files.
author Raimund Renkert <raimund.renkert@intevation.de>
date Fri, 06 Mar 2015 12:43:52 +0100
parents
children 2e8da590ea0c
comparison
equal deleted inserted replaced
547:f172b35a3b92 548:d47ee7439f44
1 /* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz
2 * Software engineering by Intevation GmbH
3 *
4 * This file is Free Software under the GNU GPL (v>=3)
5 * and comes with ABSOLUTELY NO WARRANTY! Check out
6 * the documentation coming with IMIS-Labordaten-Application for details.
7 */
8
9 var betriebsartStore = Ext.create('Ext.data.Store', {
10 fields: ['betriebsartId', 'betriebsart'],
11 data: [{
12 'betriebsartId': '1',
13 'betriebsart': 'Normal-/Routinebtrieb'
14 }, {
15 'betriebsartId': '2',
16 'betriebsart': 'Störfall/Intensivbetrieb'
17 }]
18 });
19
20 /**
21 * Combobox for Betriebsart
22 */
23 Ext.define('Lada.view.widget.Betriebsart', {
24 extend: 'Lada.view.widget.base.ComboBox',
25 alias: 'widget.betriebsart',
26 store: betriebsartStore,
27 queryMode: 'local',
28 displayField: 'betriebsart',
29 valueField: 'betriebsartId',
30 emptyText: 'Wählen Sie eine Betriebsart',
31
32 initComponent: function() {
33 this.callParent(arguments);
34 }
35 });

http://lada.wald.intevation.org