Hello Abu,
Can we do an excel kind of Cell Formatting?
e.g., bold, italic and strikethrough etc
Thanks in Advance
1 Answers
You can apply all possible CSS formatting on cell conditionally.
e.g.
// apply style on target column ‘name’, if column ‘id’ has value ‘7’
$f = array();
$f[“column”] = “id”;
$f[“op”] = “=”;
$f[“value”] = “7”;
$f[“cellcss”] = “‘background-color’:’#FBEC88′, ‘color’:’black'”;
$f[“target”] = “name”;
$f_conditions[] = $f;
Refer Conditional Formatting in documentation.
Your Answer