Mercurial > lada > lada-client
diff app/view/grid/PKommentar.js @ 548:d47ee7439f44
Added new js files.
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Fri, 06 Mar 2015 12:43:52 +0100 |
parents | |
children | 2c8aa09402a2 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/app/view/grid/PKommentar.js Fri Mar 06 12:43:52 2015 +0100 @@ -0,0 +1,74 @@ +/* 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. + */ + +/* + * Grid to list Kommentare + */ +Ext.define('Lada.view.grid.PKommentar', { + extend: 'Ext.grid.Panel', + alias: 'widget.pkommentargrid', + + requires: [ + 'Ext.toolbar.Toolbar' + ], + + maxHeight: 350, + emptyText: 'Keine Kommentaregefunden.', + minHeight: 65, + viewConfig: { + deferEmptyText: false + }, + + recordId: null, + + initComponent: function() { + var rowEditing = Ext.create('Ext.grid.plugin.RowEditing', { + clicksToMoveEditor: 1, + autoCancel: false + }); + this.plugins = [rowEditing]; + this.dockedItems = [{ + xtype: 'toolbar', + dock: 'bottom', + items: ['->', { + text: 'Hinzufügen', + icon: 'resources/img/list-add.png', + action: 'add', + probeId: this.probeId + }, { + text: 'Löschen', + icon: 'resources/img/list-remove.png', + action: 'delete' + }] + }]; + this.columns = [{ + header: 'Erzeuger', + dataIndex: 'erzeuger', + editor: { + allowBlank: false + } + }, { + header: 'Datum', + dataIndex: 'datum', + editor: { + xtype: 'datefield', + allowBlank: false, + format: 'd.m.Y', + maxValue: Ext.Date.format(new Date(), 'd.m.Y') + } + }, { + header: 'Text', + dataIndex: 'text', + flex: 1, + editor: { + allowBlank: false + } + }]; + this.callParent(arguments); + } +});