Mercurial > lada > lada-client
view app/view/messungen/Edit.js @ 438:90a09317f8d1
Removed obsolete fields from probe model.
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Mon, 02 Dec 2013 15:02:17 +0100 |
parents | f9bb1ecf6462 |
children | debfcc7713e3 |
line wrap: on
line source
/* * Window to edit a Messung */ Ext.define('Lada.view.messungen.Edit', { extend: 'Ext.window.Window', alias: 'widget.messungenedit', title: 'Maske für Messungen', width: Ext.getBody().getViewSize().width - 30, height: Ext.getBody().getViewSize().height - 30, autoShow: true, autoScroll: true, modal: true, requires: [ 'Lada.view.messungen.EditForm' ], initComponent: function() { this.buttons = [ { text: 'Speichern', scope: form, action: 'save' }, { text: 'Abbrechen', scope: this, handler: this.close } ]; var form = Ext.create('Lada.view.messungen.EditForm', this.initialConfig); this.items = [form]; this.callParent(); } });