Mercurial > lada > lada-client
view app/view/grid/MessprogrammeList.js @ 1020:00da72171de3
No default value for statuswerte, this time it should work
author | Dustin Demuth <dustin@intevation.de> |
---|---|
date | Thu, 04 Feb 2016 16:17:26 +0100 |
parents | 56470a075e6e |
children | 1df6b6210b42 |
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. */ /** * Grid to list the result of the Filter */ Ext.define('Lada.view.grid.MessprogrammeList', { extend: 'Lada.view.widget.DynamicGrid', alias: 'widget.messprogrammelistgrid', requires: 'Lada.view.window.DeleteProbe', initComponent: function() { var i18n = Lada.getApplication().bundle; this.emptyText = i18n.getMsg('messprogramme.emptyGrid'); this.dockedItems = [{ xtype: 'toolbar', dock: 'top', items: [{ xtype: 'tbtext', id: 'tbtitle', text: i18n.getMsg('messprogramme.gridTitle') }, '->', { text: i18n.getMsg('messprogramme.button.create'), icon: 'resources/img/list-add.png', action: 'addMessprogramm' }, { text: i18n.getMsg('messprogramme.button.generate'), icon: 'resources/img/view-time-schedule-insert.png', action: 'genProbenFromMessprogramm', disabled: true // disabled on startup, will be enabled by controller if necessary }] }]; this.columns = []; this.callParent(arguments); } });