onEventDropOut

드래그된 이벤트가 스케줄러 영역 밖에 드롭될 때 발생합니다

boolean onEventDropOut(string id,object ev,object to,Event e);
idstring이벤트의 ID
evobject이벤트 객체
toobject대상 스케줄러 (빈 공간에 드롭된 경우 null)
eEvent네이티브 이벤트 객체
boolean기본 이벤트 동작이 진행될지(true) 아니면 방지될지(false) 여부를 나타냅니다

Example

scheduler.attachEvent("onEventDropOut", function (id, ev, to, e){
    //여기에 커스텀 로직을 추가할 수 있습니다
    return true;
});

Details

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

See also
맨 위로