# HG changeset patch # User Raimund Renkert # Date 1426504231 -3600 # Node ID c3c8a3be511760cc58de0b758ac8b954b65e8ca8 # Parent e0b966b321637f492be1e3d5092d6ec1d7ad24db Added messung create window. diff -r e0b966b32163 -r c3c8a3be5117 app/view/window/MessungCreate.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/app/view/window/MessungCreate.js Mon Mar 16 12:10:31 2015 +0100 @@ -0,0 +1,62 @@ +/* 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 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', + + record: null, + + initComponent: function() { + this.title = 'Messung'; + this.buttons = [{ + text: 'Schließen', + scope: this, + handler: this.close + }]; + this.width = 700; + + this.items = [{ + border: 0, + autoScroll: true, + items: [{ + xtype: 'messungform' + }] + }]; + this.callParent(arguments); + }, + + initData: function() { + this.clearMessages(); + var messung = Ext.create('Lada.model.Messung', { + probeId: this.record.get('id') + }); + this.down('messungform').setRecord(messung); + }, + + setMessages: function(errors, warnings) { + //todo this is a stub + }, + clearMessages: function() { + //todo this is a stub + } + +});