onDataRender

fires after data has been rendered on the page

void onDataRender();

Example

gantt.attachEvent("onDataRender", function(){
    alert("Data was rendered on the page")
});
 
gantt.init("gantt_here");
gantt.parse(demo_tasks);

See also
Back to top