Mercurial > lada > lada-client
diff app/view/form/Messung.js @ 581:424802824648
Added a form for Messungen (unfinished)
author | Dustin Demuth <dustin@intevation.de> |
---|---|
date | Tue, 10 Mar 2015 17:12:53 +0100 |
parents | |
children | 4c97717b92da |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/app/view/form/Messung.js Tue Mar 10 17:12:53 2015 +0100 @@ -0,0 +1,56 @@ +/* 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. + */ + +/* + * Formular to edit a Messung + */ +Ext.define('Lada.view.form.Messung', { + extend: 'Ext.form.Panel', + alias: 'widget.messungform', + requires: [ + 'Lada.view.widget.Datenbasis', + 'Lada.view.widget.base.TextField', + 'Lada.view.widget.base.Datetime', + 'Lada.view.widget.base.FieldSet', + 'Lada.model.Messung' + ], + + model: 'Lada.model.Messung', + minWidth: 650, + margin: 5, + border: 0, + + recordId: null, + + trackResetOnLoad: true, + + initComponent: function(){ + this.items = [{ + xtype: 'fieldset', + title: 'Allgemein' + }]; + this.callParent(arguments); + }, + + setRecord: function(record){ + this.getForm().loadRecord(record); + }, + + setMessages: function() { + //todo this is a stub + }, + + clearMessages: function() { + //todo this is a stub + }, + + setReadonlye: function(){ + //todo this is a stub + } +}); +