Mercurial > lada > lada-client
view app/view/widget/base/FavColumn.js @ 1363:d52d4b55914b
Allow re-selection of referenced items in Ortserstellung.
A once made selection or automatic pre-selection made it impossible
to change the selection without closing the form.
author | Tom Gottfried <tom@intevation.de> |
---|---|
date | Wed, 08 Feb 2017 12:06:52 +0100 |
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>'; } });