Mercurial > lada > lada-client
view app/view/window/Messprogramm.js @ 1328:cf73b7d7cf99
reinserted discard button and functionality
author | Maximilian Krambach <mkrambach@intevation.de> |
---|---|
date | Fri, 03 Feb 2017 15:31:18 +0100 |
parents | bfdc00c24baf |
children | 1a2cd9bef6d7 |
line wrap: on
line source
/* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz * Software engineering by Intevation GmbH * * This file is Free Software under the GNU GPL (v>=3) * and comes with ABSOLUTELY NO WARRANTY! Check out * the documentation coming with IMIS-Labordaten-Application for details. */ /** * Window to edit a Messprogramm */ Ext.define('Lada.view.window.Messprogramm', { extend: 'Ext.window.Window', alias: 'widget.messprogramm', requires: [ 'Lada.view.form.Messprogramm', 'Lada.view.grid.Messmethoden', 'Lada.view.grid.Nuklide' ], collapsible: true, maximizable: true, autoShow: true, autoScroll: true, layout: 'fit', constrain: true, probenWindow: null, record: null, /** * This function initialises the Window */ initComponent: function() { var i18n = Lada.getApplication().bundle; var me = this; if (this.record == null) { this.title = i18n.getMsg('messprogramm.window.create.title'); } else { this.title = i18n.getMsg('messprogramm.window.edit.title'); } this.buttons = [{ text: i18n.getMsg('generateproben'), scope: this, disabled: this.record? false : true, //disable button if no record is set. handler: function() { //Make the Window a "singleton" if (! this.probenWindow) { var winname = 'Lada.view.window.GenProbenFromMessprogramm'; var win = Ext.create(winname, { record: this.record, parentWindow: this }); win.show(); win.initData(); this.probenWindow = win; } else { this.probenWindow.focus(); this.probenWindow.setActive(true); } me.close(); } }, '->', { text: i18n.getMsg('close'), scope: this, handler: this.close }]; this.width = 700; // add listeners to change the window appearence when it becomes inactive this.on({ activate: function(){ this.getEl().removeCls('window-inactive'); }, deactivate: function(){ this.getEl().addCls('window-inactive'); } }); this.height = Ext.getBody().getViewSize().height - 30; // 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 "Id" param to load the correct item. this.items = [{ border: 0, autoScroll: true, items: [{ xtype: 'messprogrammform', recordId: this.record ? this.record.get('id') : null }, { xtype: 'fset', name: 'orte', title: 'Ortsangaben', padding: '5, 5', margin: 5, items: [{ xtype: 'ortszuordnunggrid', recordId: me.record ? me.record.get('id') : null }] }, { //Messmethoden xtype: 'fieldset', padding: '5, 5', title: i18n.getMsg('mmtmessprogramm.form.fieldset.title'), margin: 5, layout: { type: 'column' }, items: [{ xtype: 'messmethodengrid', columnWidth: 0.5, recordId: this.record ? this.record.get('id') : null, flex: 1 }, { xtype: 'nuklidegrid', columnWidth: 0.5, recordId: this.record ? this.record.get('id') : null, flex: 1 }] }] }]; this.callParent(arguments); }, /** * Init Data is longer than in other windows. * If the Window was used to CREATE a Messprogramm, * it will load an empty record * if it was used to EDIT an existing Messprogramm, * it will load this record AND create a grid to * enable the editing of Messmethoden * which are associated to the Messprogramm */ initData: function() { var i18n = Lada.getApplication().bundle; this.clearMessages(); me = this; // If a record was passed to this window, // create a Edit window if (this.record) { this.setLoading(true); this.down('messmethodengrid').setReadOnly(false); Ext.ClassManager.get('Lada.model.Messprogramm').load(this.record.get('id'), { failure: function(record, action) { me.setLoading(false); // TODO console.log('An unhandled Failure occured. See following Response and Record'); console.log(action); console.log(record); }, success: function(record, response) { this.down('messprogrammform').setRecord(record); this.record = record; var json = Ext.decode(response.response.responseText); if (json) { this.setMessages(json.errors, json.warnings); if (!json.warnings.mediaDesk) { this.down('messprogrammform').setMediaDesk(record); } } // If the Messprogramm is ReadOnly, disable Inputfields and grids if (this.record.get('readonly') === true) { this.down('messprogrammform').setReadOnly(true); this.disableChildren(); } else { this.down('messprogrammform').setReadOnly(false); this.enableChildren(); } me.setLoading(false); }, scope: this }); } // Create a Create Window else { var record = Ext.create('Lada.model.Messprogramm'); this.down('messmethodengrid').setReadOnly(true); this.down('messprogrammform').setRecord(record); this.down('dayofyear[name=gueltigBis]').setValue(365); this.down('dayofyear[name=gueltigVon]').setValue(1); } this.down('messprogrammform').isValid(); }, //This was used in a Probewindow, I left it here for reference... /* enableAddMessungen: function() { this.down('fset[name=messungen]').down('messunggrid').setReadOnly(false); }, */ disableChildren: function() { this.down('fset[name=orte]').down('ortszuordnunggrid').setReadOnly(true); }, enableChildren: function() { this.down('fset[name=orte]').down('ortszuordnunggrid').setReadOnly(false); }, /** * Instructs the fields / forms listed in this method to set a message. * @param errors These Errors shall be shown * @param warnings These Warning shall be shown */ setMessages: function(errors, warnings) { this.down('messprogrammform').setMessages(errors, warnings); }, /** * Instructs the fields / forms listed in this method to clear their messages. */ clearMessages: function() { this.down('messprogrammform').clearMessages(); } });