Mercurial > lada > lada-client
view app/view/mkommentare/List.js @ 418:957a4a9fd260
Enabled multiselect for query filter. (Used as example in final workshop)
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Wed, 09 Oct 2013 15:02:06 +0200 |
parents | d1bb925bb5f5 |
children | debfcc7713e3 |
line wrap: on
line source
/* * Grid to list Kommentare for Messunge */ Ext.define('Lada.view.mkommentare.List' ,{ extend: 'Ext.grid.Panel', alias: 'widget.mkommentarelist', store: 'MKommentare', viewConfig: { maxHeight: 350, emptyText: 'Keine Kommentare gefunden.', // minHeight and deferEmptyText are needed to be able to show the // emptyText message. minHeight: 35, deferEmptyText: false }, probeId: null, parentId: null, initComponent: function() { this.dockedItems = [ { xtype: 'toolbar', dock: 'top', items: [ { text: 'Hinzufügen', icon: 'gfx/list-add.png', action: 'add', probeId: this.probeId, parentId: this.parentId }, { text: 'Löschen', icon: 'gfx/list-remove.png', action: 'delete' } ] } ]; this.columns = [ {header: 'Erzeuger', dataIndex: 'erzeuger'}, {header: 'Datum', dataIndex: 'kdatum'}, {header: 'Text', dataIndex: 'ktext', flex: 1} ]; this.callParent(arguments); } });