Mercurial > lada > lada-client
view app/view/mkommentare/CreateForm.js @ 413:e1af66012ef0 0.6
Reverse displayFields Array before configuring the columns of the result list.
Now the displayed columns are in the same order as defined in the query
configuration file.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Mon, 23 Sep 2013 14:26:09 +0200 |
parents | b2dc95820b70 |
children | b5b129742abf |
line wrap: on
line source
/* * Formular to create and edit a Kommentar for Messungen */ Ext.define('Lada.view.mkommentare.CreateForm', { extend: 'Lada.view.widgets.LadaForm', model: 'Lada.model.MKommentar', initComponent: function() { this.items = [ { xtype: 'mst', name: 'erzeuger', maxLength: 5, fieldLabel: 'Erzeuger' }, { xtype: 'datetime', name: 'kdatum', fieldLabel: 'Datum' }, { xtype: 'textareafield', maxLength: 1024, name: 'ktext', fieldLabel: 'Text' } ]; this.callParent(); } });