Mercurial > lada > lada-client
view app/view/window/MessungCreate.js @ 963:6a6f2c6fe8ee
More work done on StatusWerte and Statusstufe. A Messung will also open when the owner attribute is true. Stauswerte and StatusStufen are loaded at application startup. Statusgrid and Messunggrid now use these stores, which were registered at the store manager.
author | Dustin Demuth <dustin@intevation.de> |
---|---|
date | Thu, 12 Nov 2015 12:13:31 +0100 |
parents | 8054232535ba |
children | 859e2e9859cd |
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 create a Messung */ Ext.define('Lada.view.window.MessungCreate', { extend: 'Ext.window.Window', alias: 'widget.messungcreate', requires: [ 'Lada.view.form.Messung' ], collapsible: true, maximizable: true, autoshow: true, autoscroll: true, layout: 'fit', constrain: true, probe: null, record: null, grid: null, /** * This function initialises the Window */ initComponent: function() { this.probe = this.record; if (this.probe === null) { Ext.Msg.alert('Zu der Messung existiert keine Probe!'); this.callParent(arguments); return; } var messstelle = Ext.data.StoreManager.get('messstellen') .getById(this.probe.get('mstId')); this.title = 'Neue Messung zu Probe: ' + this.probe.get('probeIdAlt') + ' Mst: ' + messstelle.get('messStelle') + ' hinzufügen.'; this.buttons = [{ text: 'Schließen', 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.items = [{ border: 0, autoScroll: true, items: [{ xtype: 'messungform' }] }]; this.callParent(arguments); }, /** * Initialise the Data of this Window */ initData: function() { this.clearMessages(); var messung = Ext.create('Lada.model.Messung', { probeId: this.record.get('id') }); this.down('messungform').setRecord(messung); }, /** * 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) { //todo this is a stub }, /** * Instructs the fields / forms listed in this method to clear their messages. */ clearMessages: function() { //todo this is a stub }, /** * Disable the Childelements of this Window */ disableChildren: function(){ //intentionally! return true; }, /** * Enable the Childelements of this Window */ enableChildren: function(){ //intentionally! return true; } });