onDataRender

데이터가 페이지에 표시된 직후에 트리거됩니다

void onDataRender();

Example

gantt.attachEvent("onDataRender", function(){
    alert("데이터가 페이지에 렌더링되었습니다")
});
 
gantt.init("gantt_here");
gantt.parse(demo_tasks);

See also
Back to top