onBeforeParse

fires before data started to be parsed

void onBeforeParse();

Example

gantt.init("gantt_here");
gantt.attachEvent("onBeforeParse", function(){ 
    //any custom logic here
});
 
gantt.parse(demo_tasks);

See also
Back to top