Mercurial > lada > lada-client
view app/view/status/List.js @ 405:85238577adc9
Show warnings when saving a new Probe.
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Thu, 12 Sep 2013 12:31:27 +0200 |
parents | d1bb925bb5f5 |
children | debfcc7713e3 |
line wrap: on
line source
/* * Grid to list Status */ Ext.define('Lada.view.status.List' ,{ extend: 'Ext.grid.Panel', alias: 'widget.statuslist', store: 'Status', viewConfig: { maxHeight: 350, emptyText: 'Keine Statusangaben gefunden.', // minHeight and deferEmptyText are needed to be able to show the // emptyText message. minHeight: 35, deferEmptyText: false }, parentId: null, probeId: 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: 'Status', dataIndex: 'status'}, {header: 'Datum', dataIndex: 'sdatum'}, {header: 'Text', dataIndex: 'stext', flex: 1} ]; this.callParent(arguments); } });