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 torsten@472: * the documentation coming with IMIS-Labordaten-Application for details. torsten@472: */ torsten@472: torsten@346: /* torsten@346: * Formular to create and edit a Kommentar for Messungen torsten@346: */ torsten@207: Ext.define('Lada.view.mkommentare.CreateForm', { torsten@207: extend: 'Lada.view.widgets.LadaForm', raimund@490: model: 'Lada.model.KommentarM', torsten@207: initComponent: function() { raimund@491: this.items = [{ raimund@491: xtype: 'mst', raimund@491: name: 'erzeuger', raimund@491: fieldLabel: 'Erzeuger' raimund@491: }, { raimund@491: xtype: 'datetime', raimund@491: name: 'datum', raimund@491: fieldLabel: 'Datum' raimund@491: }, { raimund@491: xtype: 'textareafield', raimund@491: maxLength: 1024, raimund@491: name: 'text', raimund@491: fieldLabel: 'Text' raimund@491: }]; raimund@491: this.callParent(arguments); torsten@207: } torsten@207: });