API이벤트onEventDrag이 페이지에서onEventDrag Description 스케줄러 내에서 이벤트가 드래그되거나 크기 조정될 때 트리거됩니다. onEventDrag: (id: string, mode: string, ev: Event) => void;Parameters id - (required) string - 이벤트의 ID mode - (required) string - 드래그 모드: "move", "resize", 또는 "new-size" (새 이벤트 생성 시) e - (required) Event - 네이티브 이벤트 객체 Examplescheduler.attachEvent("onEventDrag", function (id, mode, e){ //여기에 커스텀 로직을 추가할 수 있습니다.});Related samples