My problem is this (always sorry for my english) :
I want to customize a cell (for example BOLD), if the value of another cell is for example "1"
Do you have some tips ?
Thx
p.s.
I have try with on_column_gettext, on the column that i want customize, but how I can get with javascript the value of another column ?
Code: JavaScript
function on_column_gettext(column, item, cellValue)
{
if (cellValue == 1)
return ...........;
}