Mercurial > lada > lada-client
view app/view/widget/Netzbetreiber.js @ 721:36c2cd8d6c54
accidently pushed debugger statement... it is getting late...
author | Dustin Demuth <dustin@intevation.de> |
---|---|
date | Wed, 15 Apr 2015 18:41:08 +0200 |
parents | d47ee7439f44 |
children | 2e8da590ea0c |
line wrap: on
line source
/* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz * Software engineering by Intevation GmbH * * This file is Free Software under the GNU GPL (v>=3) * and comes with ABSOLUTELY NO WARRANTY! Check out * the documentation coming with IMIS-Labordaten-Application for details. */ /** * Combobox for Netzbetreiber */ Ext.define('Lada.view.widget.Netzbetreiber', { extend: 'Lada.view.widget.base.ComboBox', alias: 'widget.netzbetreiber', store: 'StaNetzbetreiber', displayField: 'netzbetreiber', valueField: 'id', emptyText: 'Wählen Sie einen Netzbetreiber', // Enable filtering of comboboxes autoSelect: false, queryMode: 'local', triggerAction: 'all', typeAhead: false, minChars: 0, initComponent: function() { this.store = Ext.data.StoreManager.get('netzbetreiber'); if (!this.store) { this.store = Ext.create('Lada.store.Netzbetreiber'); } this.callParent(arguments); } });