API이벤트onBeforeLightbox이 페이지에서onBeforeLightbox Description 사용자가 라이트박스(편집 폼)를 열기 직전에 발생하는 이벤트입니다. onBeforeLightbox: (id: string) => booleanParameters id - (required) string - 이벤트의 id Returns result - (boolean) - 이벤트의 기본 동작이 진행될지(true) 중단될지(false) 결정합니다. Examplescheduler.attachEvent("onBeforeLightbox", function (id){ //여기에 커스텀 로직을 추가할 수 있습니다 return true;});Related samples