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 Messmethode torsten@352: */ torsten@178: Ext.define('Lada.view.widgets.Messmethode' ,{ raimund@490: extend: 'Ext.form.ComboBox', raimund@490: require: ['Lada.store.StaMessmethoden'], raimund@490: alias: 'widget.messmethode', raimund@490: store: 'StaMessmethoden', raimund@490: displayField:'messmethode', raimund@490: valueField: 'id', raimund@490: emptyText:'Wählen Sie eine Messmethode', raimund@490: // Enable filtering of comboboxes raimund@490: autoSelect: false, raimund@490: queryMode: 'local', raimund@490: triggerAction : 'all', raimund@490: typeAhead: false, raimund@490: minChars: 0, raimund@490: tpl: '
{id} - {messmethode}
', raimund@491: torsten@178: initComponent: function() { raimund@496: this.store = Ext.data.StoreManager.get('staMessmethoden'); raimund@490: if (!this.store) { raimund@490: this.store = Ext.create('Lada.store.StaMessmethoden'); raimund@490: } torsten@178: this.callParent(arguments); torsten@178: } torsten@178: });