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
1440
No AfterInitializeLayout event?
posted

Hi,

 Is there any event I can catch after InitializeLayout and InitializeRow?  What is the whole life cycle?  Which event will be fired up after all the InitializeRow are done?

I am trying to update some cell values after the grid is initialized, and I can't do it in InitializeRow row by row because the values comes as a package from an external sources.

 Thanks!

 

Jason Ching 

  • 469350
    Verified Answer
    Offline posted

     Hi Jason,

        InitializeRow is never really "done" firing, it fires whenever a row needs to be re-initialized. 

        I'm not really sure what you mean about why you can't use InitializeRow, but if you just want to perform some operations on the grid, then I recommend doing it after you set the DataSource (or call SetDataBinding).