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
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).