Mercurial > lada > lada-client
view app/view/kommentare/Create.js @ 527:9545adcfceeb
Removed sql statement and added column header to query selection.
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Tue, 16 Dec 2014 18:27:59 +0100 |
parents | 7c0653e8d9f7 |
children |
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 create and edit a Kommentar */ Ext.define('Lada.view.kommentare.Create', { extend: 'Ext.window.Window', alias: 'widget.kommentarecreate', requires: [ 'Lada.view.kommentare.CreateForm' ], title: 'Maske für Kommentare', // Make size of the dialog dependend of the available space. // TODO: Handle resizing the browser window. autoShow: true, autoScroll: true, modal: true, initComponent: function() { var form = Ext.create('Lada.view.kommentare.CreateForm', this.initialConfig); this.buttons = [{ text: 'Speichern', scope: form, action: 'save' }, { text: 'Abbrechen', scope: this, handler: this.close }]; this.items = [form]; this.callParent(arguments); } });