All of the data for my grid is loaded into a UltraDataSource.
All data put in the grid is done thru CellDataRequest on the UltraDataSource.
In my gridInitializeRow method I set the background color based on certain parameters.
Now I have external editors where I can edit these parameters(this is then saved to the UltraDataSource) and I am looking for away to refire the InitializeRow event so that I can change the background color accordingly. Is this even possible?
you can use
Grid.Rows.Refresh( RefreshRow.FireInitializeRow );
this will fire Initialize Row event.