I have a TGrid with a mixture of columns (ImageColumn and StringColumn). I can populate it using onGetValue event which works fine. My questions are:
How to force the entire grid to rebuild and cause onGetValue event? I'm using UpdateStyle at the monent.
How can I update a single cell in the grid?
The grid updates only visible cells!
Grid1.UpdateStyle
force the grid to rebuild and is causingonGetValue
events but its slow.Grid1.ReAlign
is much faster.As soon as cells become visible, they will be updated.
Updating 1 cell:
cell is not assigned when row never become visible.