Mercurial > lada > lada-client
view app/view/zusatzwerte/CreateForm.js @ 143:62b757ccdd8f
Show Messeinheit next to the Messwert field and change the value if the
Probenzusatz changes.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Fri, 28 Jun 2013 11:16:44 +0200 |
parents | a7bfaeb1655d |
children | d6d74718a102 |
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', listeners: { scope: this, 'change': function (field, newv, oldv, opts) { console.log(field, oldv, newv, opts); var ffield = this.getForm().findField("messeinheit"); pzsId = newv; if (pzsId == undefined) { pzsId = oldv; } ffield.setValue(this.model.getMesseinheit(pzsId)); } } }, { layout: "column", border: 0, items: [ { xtype: 'textfield', name: 'messwertPzs', fieldLabel: 'Messwert' }, { xtype: 'displayfield', name: 'messeinheit' } ] }, { xtype: 'textfield', name: 'messfehler', fieldLabel: 'rel. Unsich.[%]' }, { xtype: 'textfield', name: 'nwgZuMesswert', fieldLabel: 'Nachweisgrenze' } ]; this.callParent(); } });