본문으로 건너뛰기

unselect

Description

지정된 이벤트에서 선택을 제거합니다.

unselect: (id?: string) => void

Parameters

  • id - (optional) string - 이벤트의 ID (ID가 제공되지 않으면 현재 선택된 이벤트의 선택이 해제됩니다)

Example

var eventId = scheduler.addEvent({
start_date: "16-06-2013 09:00",
end_date: "16-06-2013 12:00",
text: "Meeting"
});

scheduler.select(eventId);

scheduler.unselect();
Need help?
Got a question about the documentation? Reach out to our technical support team for help and guidance. For custom component solutions, visit the Services page.