view app/view/zusatzwerte/CreateForm.js @ 113:70f80c4ef90e

Use new widgets in form for zusatzwerte.
author Torsten Irländer <torsten.irlaender@intevation.de>
date Wed, 19 Jun 2013 15:56:17 +0200
parents c4f97a5a9939
children 189a93e31be9
line wrap: on
line source
Ext.define('Lada.view.zusatzwerte.CreateForm', {
    extend: 'Lada.view.widgets.LadaForm',
    model: 'Lada.model.Zusatzwert',
    initComponent: function() {
        this.items = [
            {
                xtype: 'zusatzwert',
                name: 'pzsId',
                fieldLabel: 'PWZ-ID'
            },
            {
                xtype: 'textfield',
                name: 'erzeuger',
                fieldLabel: 'PWZ-Größe'
            },
            {
                xtype: 'textfield',
                name: 'messwertNwg',
                fieldLabel: '&lt;NWG'
            },
            {
                xtype: 'textfield',
                name: 'messwertPzs',
                fieldLabel: '&lt;PZW'
            },
            {
                xtype: 'textfield',
                name: 'messfehler',
                fieldLabel: 'rel. Unsich.[%]'
            },
            {
                xtype: 'messeinheit',
                name: 'mehId',
                fieldLabel: 'Maßeinheit'
            }
        ];
        this.callParent();
    }
});

http://lada.wald.intevation.org