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
1905
igGrid.created not getting called
posted

I want to bind to the created event so that I can do some things after the grid has been created, but even though I bind a function to it my function is never getting called.  Is there something special I need to do?

chartOptions.created = ( event: Event, ui: CreatedEventUIParam ): void => {

// Do some stuff

}

Parents
No Data
Reply
  • 3995
    Verified Answer
    Offline posted

    Hi rsimm,

    this event should be delegated before the initialization of the grid.

    You can see the code sample in out API docs http://help.infragistics.com/jQuery/2014.2/ui.iggrid#events:created

    Thanks, Deyan

Children