view app/view/widgets/Probenzusatzwert.js @ 452:b5b129742abf

Removed maxlength of 5
author Torsten Irländer <torsten.irlaender@intevation.de>
date Thu, 12 Dec 2013 10:45:29 +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