To highlight particular cells, use the ._options.affectedElementsByControl() method. For this you will have to override the displayOption() method of a datasource.
public void displayOption(Common _record, FormRowDisplayOption _options)
{
_options.backColor(WinApi::RGB2int(0,255,0));
_options.affectedElementsByControl(Control1.id());
}
Only thing to remember is that you cant use different colors for
different controls in the same row.
Cheers...

