view app/view/widgets/Probenzusatzwert.js @ 412:cf4b6e93f956

Typo fixed.
author Torsten Irländer <torsten.irlaender@intevation.de>
date Thu, 19 Sep 2013 15:56:23 +0200
parents 596501c16560
children f0f6ae3aae52
line wrap: on
line source
/**
 * Combobox for Zusatzwert
 */
Ext.define('Lada.view.widgets.Zusatzwert' ,{
        extend: 'Ext.form.ComboBox',
        alias: 'widget.probenzusatzwert',
        store: 'Probenzusatzwerte',
        displayField: 'beschreibung',
        valueField: 'pzsId',
        emptyText:'Wählen Sie einen Zusatzwert',
        // Enable filtering of comboboxes
        autoSelect: false,
        queryMode: 'local',
        triggerAction : 'all',
        typeAhead: true,
        minChars: 0,
    initComponent: function() {
        this.callParent(arguments);
    }
});

http://lada.wald.intevation.org