view app/view/widgets/Verwaltungseinheit.js @ 424:9c44ce52a33c

Fix rendering of the orte list. Some fields was not shown because of wrong loading of ortedetails
author Torsten Irländer <torsten.irlaender@intevation.de>
date Fri, 08 Nov 2013 09:58:54 +0100
parents a4eb98a6ea20
children 651ee49ff3c2
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);
    }
});

http://lada.wald.intevation.org