I have a transparent form in list view and a calculation in the rowBGColorCalculation that should show an icon next to the selected row.But instead to show the icon only it colour my row as well.
Do I do something wrong or is that the same mac bug as the checkboxes?
Here the code
var index = arguments[0];
var selected = arguments[1];
var top = '<html><img border=0 src="media:///'
if (selected)
{
return proj_icon_select = top + 'select12x12.png"></html>';
}
else
{
return proj_icon_select = ''
thanks for any help.