Mercurial > lada > lada-client
view app/view/zusatzwerte/Create.js @ 440:d900db3e9be9
Added tag 0.9 for changeset 1fc4407c6c83
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Mon, 02 Dec 2013 15:20:30 +0100 |
parents | f9bb1ecf6462 |
children | debfcc7713e3 |
line wrap: on
line source
/* * Window to create and edit a Probenzusatzwert */ 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() { this.buttons = [ { text: 'Speichern', scope: form, action: 'save' }, { text: 'Abbrechen', scope: this, handler: this.close } ]; var form = Ext.create('Lada.view.zusatzwerte.CreateForm', this.initialConfig); this.items = [form]; this.callParent(); } });