onSchedulerReady

fires after scheduler initialization is complete, but the scheduler is not rendered on the page yet.

void onSchedulerReady();

Example

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

Back to top