Mercurial > lada > lada-client
view app/view/proben/Edit.js @ 121:c05fda928b82
Cleanup part two. Reenabled Proben edit but one use minimum version of the probenedit. Move some stores to the combobox definitons
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Fri, 21 Jun 2013 16:55:23 +0200 |
parents | b91d5376db19 |
children | a7bfaeb1655d |
line wrap: on
line source
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, requires: [ //'Lada.view.proben.EditForm', //'Lada.view.widgets.Uwb', //'Lada.view.kommentare.List', //'Lada.view.orte.List', //'Lada.view.messungen.List', //'Lada.view.zusatzwerte.List' ], initComponent: function() { // 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); /// Load kommentare ////var record = form.getRecord(); //var kommentare = form.down('kommentarelist'); //form.down('kommentare'); //var kstore = kommentare.getStore(); //kstore.load({ // params: { // probe: this.initialConfig['modelId'] // //probe: record.data['probeId'] // } //}); //// Load Orte //var orte = form.down('ortelist'); //var ostore = orte.getStore(); //ostore.load({ // params: { // probe: this.initialConfig['modelId'] // //probe: record.data['probeId'] // } //}); //// Load Zusatzwerte //var zwerte = form.down('zusatzwertelist'); //var zstore = zwerte.getStore(); //zstore.load({ // params: { // probe: this.initialConfig['modelId'] // //probe: record.data['probeId'] // } //}); //// Load Messungen //var messungen = form.down('messungenlist'); //var mstore = messungen.getStore(); //mstore.load({ // params: { // probe: this.initialConfig['modelId'] // //probe: record.data['probeId'] // } //}); this.items = [form]; this.buttons = [ { text: 'Speichern', handler: form.commit, scope: form } ]; this.callParent(); } });