Mercurial > lada > lada-client
view app/view/window/MessungCreate.js @ 870:2e81d2ad6af7
added a * in coomments. jsduck can find this class now
author | Dustin Demuth <dustin@intevation.de> |
---|---|
date | Mon, 13 Jul 2015 12:38:31 +0200 |
parents | 6f6d2df00130 |
children | 13c0e64e1873 |
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 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, record: null, grid: null, initComponent: function() { this.title = 'Messung'; 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); }, 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 }, disableChildren: function(){ //intentionally! return true; }, enableChildren: function(){ //intentionally! return true; } });