view app/view/widgets/Messgroesse.js @ 423:f0f6ae3aae52

Fixed class names.
author Raimund Renkert <rrenkert@intevation.de>
date Thu, 07 Nov 2013 12:14:36 +0100
parents 596501c16560
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);
    }
});

http://lada.wald.intevation.org