torsten@472: /* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz torsten@472: * Software engineering by Intevation GmbH torsten@472: * torsten@472: * This file is Free Software under the GNU GPL (v>=3) torsten@472: * and comes with ABSOLUTELY NO WARRANTY! Check out torsten@472: * the documentation coming with IMIS-Labordaten-Application for details. torsten@472: */ torsten@472: torsten@352: /** torsten@352: * Combobox for Zusatzwert torsten@352: */ rrenkert@423: Ext.define('Lada.view.widgets.Probenzusatzwert' ,{ torsten@112: extend: 'Ext.form.ComboBox', torsten@122: alias: 'widget.probenzusatzwert', torsten@122: store: 'Probenzusatzwerte', torsten@114: displayField: 'beschreibung', torsten@112: valueField: 'pzsId', torsten@112: emptyText:'Wählen Sie einen Zusatzwert', torsten@355: // Enable filtering of comboboxes torsten@355: autoSelect: false, torsten@355: queryMode: 'local', torsten@355: triggerAction : 'all', torsten@355: typeAhead: true, torsten@355: minChars: 0, torsten@112: initComponent: function() { torsten@112: this.callParent(arguments); torsten@112: } torsten@112: });