onBeforeParse

fires before data started to be parsed

void onBeforeParse();

Example

scheduler.init("scheduler_here");
scheduler.attachEvent("onBeforeParse", function(){ 
    //any custom logic here
});
scheduler.parse(events);

See also
Back to top