view app/view/zusatzwerte/CreateForm.js @ 114:189a93e31be9

Worked on Zusatzwerte. No all values are displayed correct in the List and form. But sending data in correct form does not work yet.
author Torsten Irländer <torsten.irlaender@intevation.de>
date Thu, 20 Jun 2013 12:34:09 +0200
parents 70f80c4ef90e
children a7bfaeb1655d
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: 'sprobenZusatz_pzsId',
                fieldLabel: 'PZW-Größe'
            },
            {
                xtype: 'textfield',
                name: 'messwertPzs',
                fieldLabel: 'Messwert'
            },
            {
                xtype: 'textfield',
                name: 'messfehler',
                fieldLabel: 'rel. Unsich.[%]'
            },
            {
                xtype: 'textfield',
                name: 'nwgZuMesswert',
                fieldLabel: 'Nachweisgrenze'
            }
        ];
        this.callParent();
    }
});

http://lada.wald.intevation.org