onBeforeParse

데이터 파싱이 시작되기 직전에 트리거됩니다

void onBeforeParse();

Example

gantt.init("gantt_here");
gantt.attachEvent("onBeforeParse", function(){ 
    // 이곳에 사용자 정의 로직을 추가하세요
});
 
gantt.parse(demo_tasks);

See also
Back to top