Mercurial > lada > lada-client
view app/view/proben/Edit.js @ 470:4d8819844c48
Fixed circular requirement.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Tue, 14 Jan 2014 15:41:39 +0100 |
parents | f9bb1ecf6462 |
children | debfcc7713e3 |
line wrap: on
line source
/* * Window to edit a Probe */ Ext.define('Lada.view.proben.Edit', { extend: 'Ext.window.Window', alias: 'widget.probenedit', title: 'Maske für §3-Proben', // Make size of the dialog dependend of the available space. // TODO: Handle resizing the browser window. width: Ext.getBody().getViewSize().width - 30, height: Ext.getBody().getViewSize().height - 30, autoShow: true, autoScroll: true, modal: true, initComponent: function() { this.buttons = [ { text: 'Speichern', action: 'save' }, { text: 'Abbrechen', scope: this, handler: this.close } ]; // InitialConfig is the config object passed to the constructor on // creation of this window. We need to pass it throuh to the form as // we need the "modelId" param to load the correct item. var form = Ext.create('Lada.view.proben.EditForm', this.initialConfig); this.items = [form]; this.callParent(); } });