view app/view/widget/Messgroesse.js @ 1382:c8827424723b

Fixed fieldset interactions (Ortsangaben)
author Evi Huber <ehuber@bfs.de>
date Thu, 23 Feb 2017 09:55:55 +0100
parents d47ee7439f44
children
line wrap: on
line source
/* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz
 * Software engineering by Intevation GmbH
 *
 * This file is Free Software under the GNU GPL (v>=3)
 * and comes with ABSOLUTELY NO WARRANTY! Check out
 * the documentation coming with IMIS-Labordaten-Application for details.
 */

/**
 * Combobox for Messgroesse
 */
Ext.define('Lada.view.widget.Messgroesse', {
    extend: 'Lada.view.widget.base.ComboBox',
    alias: 'widget.messgroesse',
    store: 'Messgroessen',
    displayField: 'messgroesse',
    valueField: 'id',
    emptyText: 'Wählen Sie eine Messgröße',
    // Enable filtering of comboboxes
    autoSelect: false,
    queryMode: 'local',
    triggerAction: 'all',
    typeAhead: false,
    minChars: 0,

    initComponent: function() {
        this.store = Ext.data.StoreManager.get('messgroessen');
        if (!this.store) {
            this.store = Ext.create('Lada.store.Messgroessen');
        }
        this.callParent(arguments);
    }
});

http://lada.wald.intevation.org