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
}
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
Thanks...I did not notice the difference in the comment there.