Mercurial > lada > lada-client
view app/view/widgets/Messgroesse.js @ 436:067ecffac15d
Updated Readme: Added section with hints to minify the app with Sencha cmd.
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Mon, 11 Nov 2013 11:22:16 +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); } });