onAfterTaskDrag

사용자가 드래그를 완료하고 마우스 버튼을 놓을 때 한 번 발생합니다.

void onAfterTaskDrag(string|number id,string mode,Event e);
idstring|number작업(task) ID
modestring드래그 앤 드롭 모드 ("resize", "progress", "move", "ignore")
eEvent네이티브 이벤트 객체

Example

gantt.attachEvent("onAfterTaskDrag", function(id, mode, e){
    //여기에 사용자 정의 로직 작성
});

Details

이 이벤트는 타임라인 영역 내에서 작업이 드래그된 후 발생합니다.

See also
Back to top