view app/view/widgets/Messgroesse.js @ 354:0a8fd4c2e7a8

Fixed local filtering of combo
author Torsten Irländer <torsten.irlaender@intevation.de>
date Tue, 13 Aug 2013 12:29:56 +0200
parents 5fbcbf330839
children 596501c16560
line wrap: on
line source
/**
 * Combobox for Messgroesse
 */
Ext.define('Lada.view.widgets.Messegroesse' ,{
        extend: 'Ext.form.ComboBox',
        alias: 'widget.messgroesse',
        store: 'Messgroessen',
        displayField: 'messgro0esse',
        valueField: 'messgroesseId',
        emptyText:'Wählen Sie eine Messgröße',
        forceSelection: true,
        autoSelect: false,
        queryMode: 'local',
        triggerAction : 'all',
        typeAhead: true,
        minChars: 0,

    initComponent: function() {
        this.callParent(arguments);
    }
});

http://lada.wald.intevation.org