onEventDragIn

드래그된 이벤트가 스케줄러에 진입할 때 발생합니다

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

Example

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

Details

이 이벤트는 서로 다른 스케줄러 간의 drag-and-drop 동작 중에만 발생합니다.

See also
맨 위로