Mercurial > lada > lada-client
comparison app/view/widgets/Probenzusatzwert.js @ 122:a7bfaeb1655d
Cleanup part three. Reenabled Zusatzwerte and implemented sending nested data.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Fri, 21 Jun 2013 16:56:17 +0200 |
parents | app/view/widgets/Zusatzwert.js@189a93e31be9 |
children | 5fbcbf330839 |
comparison
equal
deleted
inserted
replaced
121:c05fda928b82 | 122:a7bfaeb1655d |
---|---|
1 // Combobox for Zusatzwert. | |
2 Ext.define('Lada.view.widgets.Zusatzwert' ,{ | |
3 extend: 'Ext.form.ComboBox', | |
4 alias: 'widget.probenzusatzwert', | |
5 store: 'Probenzusatzwerte', | |
6 displayField: 'beschreibung', | |
7 valueField: 'pzsId', | |
8 emptyText:'Wählen Sie einen Zusatzwert', | |
9 initComponent: function() { | |
10 this.callParent(arguments); | |
11 } | |
12 }); |