torsten@472: /* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz torsten@472: * Software engineering by Intevation GmbH torsten@472: * torsten@472: * This file is Free Software under the GNU GPL (v>=3) torsten@472: * and comes with ABSOLUTELY NO WARRANTY! Check out raimund@497: * the documentation coming with IMIS-Labordaten-Application for details. torsten@472: */ torsten@472: torsten@345: /* torsten@345: * Window to create and edit a Messwert torsten@345: */ torsten@186: Ext.define('Lada.view.messwerte.Create', { torsten@186: extend: 'Ext.window.Window', torsten@186: alias: 'widget.messwertecreate', torsten@186: torsten@186: title: 'Maske für Messwerte', torsten@186: autoShow: true, torsten@186: autoScroll: true, torsten@186: modal: true, torsten@186: torsten@186: initComponent: function() { raimund@497: var form = Ext.create('Lada.view.messwerte.CreateForm', raimund@497: this.initialConfig); raimund@491: this.buttons = [{ raimund@491: text: 'Speichern', raimund@491: scope: form, raimund@491: action: 'save' raimund@491: }, { raimund@491: text: 'Abbrechen', raimund@491: scope: this, raimund@491: handler: this.close raimund@491: }]; torsten@270: this.items = [form]; raimund@491: this.callParent(arguments); torsten@186: } torsten@186: });