Mercurial > lada > lada-client
view app/view/widgets/Messgroesse.js @ 438:90a09317f8d1
Removed obsolete fields from probe model.
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Mon, 02 Dec 2013 15:02:17 +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); } });