Hi, I'm a bit confused about the InitializeRow event. Am i righ to say that this InitializeRow event is fired whenever there is a change in any cell (either value, or appearance) of a row? Thanks.
Actually, it does fire when a value in a cell is changed.
The purpose of the InitializeRow event is to give you a way to perform an action on a row based on some value in that row. So, for example, if you want to change the color of a row based on a value of a cell. Or enabled or disable a cell in the row based on the value of some other cell in the same row.
So it fires when the row is first created by the grid and also whenever a value of a cell is changed.
Hi Mike, I find that this event will also be fired if a cell value is updated, whether the value is changed or not ((could be same value been assigned to the cell again). Is there a way to suppress the event in this kind of scenario or is there any other events can be used? Is there a kind of CellChange event when the data source cell data is udpated?