Mercurial > lada > lada-client
view app/view/widgets/Staat.js @ 524:8972f008dfb1
Make tables editable for 'MKommentare'
See LSB 3.5
author | Roland Geider <roland.geider@intevation.de> |
---|---|
date | Tue, 16 Dec 2014 16:20:42 +0100 |
parents | 7c0653e8d9f7 |
children |
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 Staat */ Ext.define('Lada.view.widgets.Staat', { extend: 'Ext.form.ComboBox', alias: 'widget.staat', store: 'StaStaaten', displayField: 'staat', valueField: 'id', emptyText: 'Wählen Sie einen Staat', // Enable filtering of comboboxes autoSelect: false, queryMode: 'local', triggerAction: 'all', typeAhead: false, minChars: 0, initComponent: function() { this.store = Ext.data.StoreManager.get('staStaaten'); if (!this.store) { this.store = Ext.create('Lada.store.StaStaaten'); } this.callParent(arguments); } });