Mercurial > lada > lada-client
view app/view/widgets/Messgroesse.js @ 442:bba7fbcf2f70
Simplified logic in Messwert listing. No extra logic anymore to check if a "<"
char is displayed in front of the measured value. Simply dislplay the value
and value form messwertNwg.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Tue, 03 Dec 2013 11:23:15 +0100 |
parents | f0f6ae3aae52 |
children | a122424f2f0f |
line wrap: on
line source
/** * Combobox for Messgroesse */ Ext.define('Lada.view.widgets.Messgroesse' ,{ extend: 'Ext.form.ComboBox', alias: 'widget.messgroesse', store: 'Messgroessen', displayField: 'messgro0esse', valueField: 'messgroesseId', emptyText:'Wählen Sie eine Messgröße', // Enable filtering of comboboxes autoSelect: false, queryMode: 'local', triggerAction : 'all', typeAhead: true, minChars: 0, initComponent: function() { this.callParent(arguments); } });