Mercurial > lada > lada-client
view app/view/zusatzwerte/Create.js @ 207:62e116cd3e3b
Inheritance of Mkommentare from Kommentare does not work as expected. So write
mostly duplicated code for MKommentare.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Tue, 09 Jul 2013 15:26:29 +0200 |
parents | e7665edf953f |
children | 11f8a2c1b610 |
line wrap: on
line source
Ext.define('Lada.view.zusatzwerte.Create', { extend: 'Ext.window.Window', alias: 'widget.zusatzwertecreate', title: 'Maske für Zusatzwerte', autoShow: true, autoScroll: true, modal: true, initComponent: function() { var form = Ext.create('Lada.view.zusatzwerte.CreateForm', this.initialConfig); this.items = [form]; this.buttons = [ { text: 'Speichern', scope: form, action: 'save' } ]; this.callParent(); } });