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@342: /*
torsten@342:  * Window to create and edit a Kommentar
torsten@342:  */
torsten@111: Ext.define('Lada.view.kommentare.Create', {
torsten@111:     extend: 'Ext.window.Window',
torsten@111:     alias: 'widget.kommentarecreate',
raimund@491:     requires: [
raimund@491:         'Lada.view.kommentare.CreateForm'
raimund@491:     ],
torsten@111: 
torsten@111:     title: 'Maske für Kommentare',
torsten@111:     // Make size of the dialog dependend of the available space.
torsten@111:     // TODO: Handle resizing the browser window.
torsten@111:     autoShow: true,
torsten@111:     autoScroll: true,
torsten@111:     modal: true,
torsten@111: 
torsten@111:     initComponent: function() {
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:         }];
raimund@491:         var form = Ext.create('Lada.view.kommentare.CreateForm',
raimund@491:             this.initialConfig);
torsten@271:         this.items = [form];
raimund@491:         this.callParent(arguments);
torsten@111:     }
torsten@111: });