Mercurial > lada > lada-client
view app/view/mkommentare/List.js @ 226:2794341bfc8a
Fixed creating messwerte.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Wed, 17 Jul 2013 10:56:06 +0200 |
parents | 62e116cd3e3b |
children | b2dc95820b70 |
line wrap: on
line source
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/plus.gif', action: 'add', probeId: this.probeId, parentId: this.parentId }, { text: 'Löschen', icon: 'gfx/minus.gif', action: 'delete' } ] } ]; this.columns = [ {header: 'Erzeuger', dataIndex: 'erzeuger'}, {header: 'Datum', dataIndex: 'kdatum'}, {header: 'Text', dataIndex: 'ktext', flex: 1} ]; this.callParent(arguments); } });