onEventDragOut

드래그된 이벤트가 스케줄러 영역을 벗어날 때 발생합니다.

void onEventDragOut(string id,Event e);
idstring이벤트의 id
eEvent네이티브 이벤트 객체

Example

scheduler.attachEvent("onEventDragOut", function (id, e){
    //여기에 커스텀 로직 작성
});

Details

이 이벤트는 서로 다른 스케줄러 간의 드래그 앤 드롭 동작 중에만 발생합니다.

See also
맨 위로