onParse

fires after data was parsed (became available for API) but before it was rendered in the Scheduler

void onParse();

Example

scheduler.init("scheduler_here");
scheduler.attachEvent("onParse", function(){alert("Data was parsed")});
scheduler.parse(events);

See also
Back to top