Mercurial > lada > lada-client
view app/view/zusatzwerte/CreateForm.js @ 141:1fb79e16149f
Displaye Messeinheit in the Zusatzwerte Overview.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Fri, 28 Jun 2013 09:51:41 +0200 |
parents | a7bfaeb1655d |
children | 62b757ccdd8f |
line wrap: on
line source
Ext.define('Lada.view.zusatzwerte.CreateForm', { extend: 'Lada.view.widgets.LadaForm', requires : [ 'Lada.view.widgets.Probenzusatzwert' ], model: 'Lada.model.Zusatzwert', initComponent: function() { this.items = [ { xtype: 'probenzusatzwert', name: '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(); } });