Mercurial > lada > lada-client
view app/view/status/Create.js @ 249:81aca4dd5f0c
Simpliefied function to reconfigure the table.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Wed, 24 Jul 2013 14:52:51 +0200 |
parents | 30ba9a98d627 |
children | 11f8a2c1b610 |
line wrap: on
line source
Ext.define('Lada.view.status.Create', { extend: 'Ext.window.Window', alias: 'widget.statuscreate', title: 'Maske für den Messstatus', autoShow: true, autoScroll: true, modal: true, initComponent: function() { var form = Ext.create('Lada.view.status.CreateForm', this.initialConfig); this.items = [form]; this.buttons = [ { text: 'Speichern', scope: form, action: 'save' } ]; this.callParent(); } });