onLinkClick

사용자가 링크를 클릭할 때 트리거됩니다.

void onLinkClick(string|number id, [Event e] );
idstring|number클릭된 링크의 식별자
eEvent선택 사항, 네이티브 이벤트 객체

Example

gantt.attachEvent("onLinkClick", function(id,e){
    //여기에 커스텀 로직을 추가할 수 있습니다
});

See also
Back to top