onBeforeQuickInfo

이벤트에 대한 Quick Info 팝업이 표시되기 직전에 트리거됩니다.

void onBeforeQuickInfo(number|stringid);
idnumber|string이벤트의 ID

Example

scheduler.attachEvent("onBeforeQuickInfo", function(id) {
   if(scheduler.getEvent(id).readonly){
    return false;
   }
 
   return true;
});

Details

이 이벤트는 차단할 수 있습니다. false를 반환하면 기본 동작이 실행되지 않습니다.

See also
맨 위로