Mercurial > lada > lada-client
comparison app/view/zusatzwerte/CreateForm.js @ 110:c4f97a5a9939
Added Forms to add Zusatzwerte
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Wed, 19 Jun 2013 14:10:54 +0200 |
parents | |
children | 70f80c4ef90e |
comparison
equal
deleted
inserted
replaced
109:2308094f5a8c | 110:c4f97a5a9939 |
---|---|
1 Ext.define('Lada.view.zusatzwerte.CreateForm', { | |
2 extend: 'Lada.view.widgets.LadaForm', | |
3 model: 'Lada.model.Zusatzwert', | |
4 initComponent: function() { | |
5 this.items = [ | |
6 //{ | |
7 // xtype: 'textfield', | |
8 // name: 'erzeuger', | |
9 // fieldLabel: 'Erzeuger' | |
10 //}, | |
11 //{ | |
12 // xtype: 'datefield', | |
13 // name: 'kdatum', | |
14 // fieldLabel: 'Datum' | |
15 //}, | |
16 //{ | |
17 // xtype: 'textareafield', | |
18 // name: 'ktext', | |
19 // fieldLabel: 'Text' | |
20 //} | |
21 ]; | |
22 this.callParent(); | |
23 } | |
24 }); |