Mercurial > lada > lada-client
view app/view/widgets/Mst.js @ 502:484e12e89d54
Code style.
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Thu, 11 Dec 2014 18:53:29 +0100 |
parents | c1b77fb96b01 |
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 Messstelle */ Ext.define('Lada.view.widgets.Mst', { extend: 'Ext.form.ComboBox', alias: 'widget.mst', store: 'StaMessstellen', displayField: 'messStelle', valueField: 'id', emptyText: 'Wählen Sie eine Messstelle', // Enable filtering of comboboxes autoSelect: false, queryMode: 'local', triggerAction: 'all', typeAhead: false, minChars: 0, initComponent: function() { this.store = Ext.data.StoreManager.get('staMessstellen'); if (!this.store) { this.store = Ext.create('Lada.store.StaMessstellen'); } this.callParent(arguments); } });