view app/view/widgets/Verwaltungseinheit.js @ 470:4d8819844c48

Fixed circular requirement.
author Torsten Irländer <torsten.irlaender@intevation.de>
date Tue, 14 Jan 2014 15:41:39 +0100
parents 651ee49ff3c2
children debfcc7713e3
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',
        hideTrigger: true,
        // Enable filtering of comboboxes
        autoSelect: false,
        queryMode: 'remote',
        triggerAction : 'type',
        typeAhead: true,
        minChars: 2,
    initComponent: function() {
        this.callParent(arguments);
    },
    // This listener is used to load currently "selected" verwaltungseinheit.
    // This is needed as without having this record the field would only
    // display the raw value (id) of the verwaltungseinheit.
    listeners: {
        render: function(combo, eOpts) {
            combo.store.load({
                id: this.getValue()
            });
        }
    }
});

http://lada.wald.intevation.org