view app/view/widgets/Messeinheit.js @ 189:214d1b274a50

As the model now should have a readonly flag, the check if the form must be rendered as readonly was moved to the place where the model is actually bound to the form.
author Torsten Irländer <torsten.irlaender@intevation.de>
date Fri, 05 Jul 2013 14:49:15 +0200
parents 882566d0b8f3
children 5fbcbf330839
line wrap: on
line source
// Combobox for Umweltbereich
Ext.define('Lada.view.widgets.Messeinheit' ,{
        extend: 'Ext.form.ComboBox',
        alias: 'widget.messeinheit',
        store: 'Messeinheit',
        displayField: 'einheit',
        valueField: 'mehId',
        emptyText:'Wählen Sie eine Messeinheit',
    initComponent: function() {
        this.callParent(arguments);
    }
});

http://lada.wald.intevation.org