[RPG]BackColor of table row
Posted: Wed Aug 16, 2017 12:42 pm
Hi,
Setting BackColor: Red to table rows as default and setting BackColor:White to a row when row value is changed, it works as expected. The backcolor of the target row will be turned white.
and
However, when setting BackColor of some content of the row(not the whole columns of the row) and setting BackColor:White to the row when row value is changed, the colored BackColor won't be turned white.
and
Is this an intended behavior?
Do we need to set BackColor:White to each content if you've set BackColor to some contents, not the whole contents of the row?
Best Regards,
Megumi Sawada
Setting BackColor: Red to table rows as default and setting BackColor:White to a row when row value is changed, it works as expected. The backcolor of the target row will be turned white.
Code: Select all
CALLP LRNG_ASSIGNSTRTOPROP
('RED' : /FORM.FIELDS.LIST1.ROW%' +
%CHAR(LOCAL.INDEX) + '.BACKCOLOR')Code: Select all
CALLP LRNG_ASSIGNSTRTOPROP
('WHITE' : /FORM.FIELDS.LIST1.ROW%' +
%CHAR(LOCAL.INDEX) + '.BACKCOLOR')Code: Select all
CALLP LRNG_ASSIGNSTRTOPROP
('RED' : /FORM.FIELDS.LIST1.ROW%' +
%CHAR(LOCAL.INDEX) + '.NO.BACKCOLOR')Code: Select all
CALLP LRNG_ASSIGNSTRTOPROP
('WHITE' : /FORM.FIELDS.LIST1.ROW%' +
%CHAR(LOCAL.INDEX) + '.BACKCOLOR')Do we need to set BackColor:White to each content if you've set BackColor to some contents, not the whole contents of the row?
Best Regards,
Megumi Sawada