onBeforeEventDragIn

드래그된 이벤트가 스케줄러 영역에 진입하기 직전에 발생합니다.

boolean onBeforeEventDragIn(string id,Event e);
idstring이벤트의 id
eEvent네이티브 이벤트 객체
boolean기본 이벤트 동작이 계속 진행되는지(true) 취소되는지(false)를 결정합니다.

Example

scheduler.attachEvent("onBeforeEventDragIn", function (id, e){
    // 여기에 커스텀 로직을 작성하세요
    return true;
});

Details

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

See also
맨 위로