torsten@443: var nwgStore = Ext.create('Ext.data.Store', { torsten@443: fields: ['nwgId', 'nwg'], torsten@443: data: [ torsten@443: {"nwgId":"", "nwg":">="}, torsten@443: {"nwgId":"<", "nwg":"<"} torsten@443: ] torsten@443: }); torsten@443: torsten@443: /** torsten@443: * Combobox for Nachweisgrenze. torsten@443: */ torsten@443: Ext.define('Lada.view.widgets.Nwg' ,{ torsten@443: extend: 'Ext.form.ComboBox', torsten@443: editable: false, torsten@443: alias: 'widget.nwg', torsten@443: store: nwgStore, torsten@443: queryMode: 'local', torsten@443: displayField:'nwg', torsten@443: valueField: 'nwgId', torsten@443: emptyText:'Messwert kleiner als Nachweisgrenze?', torsten@443: initComponent: function() { torsten@443: this.callParent(arguments); torsten@443: } torsten@443: });