Hi
I want to change the color of a cell after check if it exist.
I am using the example and figured this par out…
$f2 = array();
$f2["column"] = "MethodIdFK";
$f2["css"] = "'background-color':'#00FF00'"; // must use (single quote ') with css attr and value
$f2_conditions[] = $f2;
$g2->set_conditional_css($f2_conditions);
but I want to check is the value exist in another table then change the color?
1 Answers
What you have to do is, to make that new table field add as a grid column, (using join) and then set it in condition.
Your Answer