Is there a way to set a field in a table/view so that it has a different color of the text or table box if it is equal to a value? For example, if a value is “Trained” that would show up as Green text and “Not Trained” would show red text? I have not been able to find anywhere that I can customize this at this point.
in Table-Specfic - List Page function:ListOptions_Rendered()do something like:
if($this->SOME_VALUE->CurrentValue == 38)) {
$this->SOME_VALUE->CellAttrs["style"] = "color:#000000; background-color:#FFFF00";
else
$this->SOME_VALUE->CellAttrs["style"] = "color:#000000; background-color:#DDDD00";
}
set the colours to what you want