Mercurial > lada > lada-client
view app/view/widget/base/FavColumn.js @ 1149:860f03b39a83
Prepare for new server version and cleanup roles.
author | Tom Gottfried <tom@intevation.de> |
---|---|
date | Thu, 02 Jun 2016 11:30:33 +0200 |
parents | af9879d72310 |
children |
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. */ Ext.define('Lada.view.widget.base.FavColumn', { extend: 'Ext.grid.column.CheckColumn', alias: 'widget.favcolumn', /* constructor: function() { this.addEvents( 'checkchange' ); this.callParent(arguments); }, */ renderer: function(value, metaData, record) { var cssPrefix = Ext.baseCSSPrefix; var cls = [cssPrefix + 'grid-checkheader']; if (value) { cls.push(cssPrefix + 'grid-favcolumn-checked'); } else { cls.push(cssPrefix + 'grid-favcolumn-unchecked'); } return '<div class="' + cls.join(' ') + '"> </div>'; } });