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

Fixed class names.
author Raimund Renkert <rrenkert@intevation.de>
date Thu, 07 Nov 2013 12:14:36 +0100
parents 596501c16560
children 0814c50caa81
line wrap: on
line source
/**
 * Combobox for Verwaltungseinheit
 */
Ext.define('Lada.view.widgets.Verwaltungseinheit' ,{
        extend: 'Ext.form.ComboBox',
        alias: 'widget.verwaltungseinheiten',
        store: 'Verwaltungseinheiten',
        displayField: 'bezeichnung',
        valueField: 'gemId',
        emptyText:'Wählen Sie eine Verwaltungseinheit',
        // Enable filtering of comboboxes
        autoSelect: false,
        queryMode: 'local',
        triggerAction : 'all',
        typeAhead: true,
        minChars: 0,
    initComponent: function() {
        this.callParent(arguments);
    }
});

http://lada.wald.intevation.org