Hello PHPGRID Team,
Here, I want to set the light gray color with a not-allowed cursor on my non-editable column, so mobile user and a desktop user can understand it visually.
Thanks, Advance
1 Answers
Pasting from docs:
If nothing set in ‘op’ and ‘value’, it will set column formatting for all cell, e.g.
$f = array();
$f[“column”] = “invdate”;
$f[“css”] = “‘background-color’:’#FBEC88′, ‘color’:’black'”;
$f_conditions[] = $f;
Refer demos/appearance/conditional-format.php for reference.
Your Answer