Mercurial > lada > lada-client
view app/view/widget/MessstelleLabor.js @ 1155:1be581a403b5
Introduce i18n for Haupt- and Nebenprobennummer.
author | Tom Gottfried <tom@intevation.de> |
---|---|
date | Mon, 06 Jun 2016 15:10:01 +0200 |
parents | cbe5a19449a4 |
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/Labor */ Ext.define('Lada.view.widget.MessstelleLabor', { extend: 'Lada.view.widget.base.ComboBox', alias: 'widget.messstellelabor', store: 'MessstelleLabor', displayField: 'displayCombi', valueField: 'id', editable: this.editable || false, forceSelection: true, emptyText: 'Wählen Sie eine Kombination', // Enable filtering of comboboxes autoSelect: true, queryMode: 'local', triggerAction: 'all', typeAhead: false, minChars: 0, initComponent: function() { this.store = Ext.data.StoreManager.get('messstellelabor'); this.callParent(arguments); this.down('combobox').isFormField = false; } });