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
125
Final Grid Event
posted

What is the last event to get fired after data has been loaded into a grid and all rows have been initialized?

Parents
  • 37774
    Verified Answer
    posted

    There is no such event; the order is basically 'Set DataSource -> InitializeLayout event -> InitializeRow events'.  What is it that you're trying to do?  Generally most grid-specific logic should go into the InitializeLayout event.  You should be able to put code immediately after you set the DataSource of the grid, since the InitializeLayout and InitializeRow events will fire synchronously, and thus before they get to the code that you place after setting the DataSource.

    -Matt

Reply Children