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
650
Row re-initialization question
posted

Is there a way to tell the grid to clear out its list of initialized rows? Basically, we want to make sure that whenever a row scrolls into view, that it will get its InitializeRow event ran, even if the user has seen it before because they've scrolled and thus the grid has loaded it.

Parents
  • 469350
    Offline posted

    Hi,

    It sounds like you want the grid to throw away any rows it has already allocated. I don't think there is any way to do that.

    You can force InitializeRow to fire again by calling the Refresh method on a Row or you can call grid.Rows.Refresh(FireInitializeRow) to make the event fire for all rows.

     

Reply Children