Blue
White
Purple
Green
Red
Orange
Blue Light
White Light
Purple Light
Green Light
Red Light
Orange Light
hi,is it possible, if field is empty then change color field or row on listing?regards
Hi,to change color of the field use After record processed event on the Events tab.Here is a sample code:
if ($data["FieldName"]==0) {$record["FieldName_style"]='style="background:red"';}
For more information:http://www.asprunner.com/forums/topic/6413-how-to-change-row-background-color-programmatically/
It works great, Thanks Ann.best regards.