onTimelineCreated

fires after the Timeline view has been initialized, but is not rendered on the page yet (the Timeline view only)

void onTimelineCreated(object config);
configobjectthe Timeline view config object

Example

scheduler.attachEvent("onTimelineCreated", function (config){
    //any custom logic here
});

Details

The event is invoked from the createTimelineView method.

Back to top