view app/view/widgets/Probenzusatzwert.js @ 376:90cec3bb9c09

Updated URL for import service.
author Raimund Renkert <rrenkert@intevation.de>
date Fri, 23 Aug 2013 12:57:05 +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