Hello,
I have a grid and try to color a row depending on the value of a certain cell.
in the OnGetCellLayout event i have the folowing code
if FNCGridBegroting.AllFloats[2,ARow] = 1 then
begin
aLayout.Font.Color := System.UITypes.TAlphaColorRec.Blue;
end;
The grid is connected to a FDMemTable with records in it.
The text color is never coloring blue.
Only if i manually type the value again in the grid the row colors Blue.
What am I missing ?
Gert Hoogeboom