Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
20
Is there anyway to programatically refire the RowInitialize method
posted

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?

Parents
No Data
Reply
  • 1210
    posted

    you can use

    Grid.Rows.Refresh( RefreshRow.FireInitializeRow );

    this will fire Initialize Row event.

Children
No Data