view app/view/widgets/Probenzusatzwert.js @ 468:59f8a9a20e44

Added tag 1.0 for changeset fa2a7a37a248
author Torsten Irländer <torsten.irlaender@intevation.de>
date Tue, 14 Jan 2014 12:29:07 +0100
parents f0f6ae3aae52
children debfcc7713e3
line wrap: on
line source
/**
 * Combobox for Zusatzwert
 */
Ext.define('Lada.view.widgets.Probenzusatzwert' ,{
        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