onBeforeTodayDisplayed

스케줄러에서 'Today' 버튼이 클릭될 때 트리거됩니다.

boolean onBeforeTodayDisplayed();
boolean기본 이벤트 동작이 진행될지(true) 또는 방지될지(false)를 나타냅니다.

Example

scheduler.attachEvent("onBeforeTodayDisplayed", function (){
    // 여기에 사용자 정의 로직을 작성하세요
    return true;
});

맨 위로