onBeforeQuickInfo

fires immediately before the Quick Info popup is displayed for an event

void onBeforeQuickInfo(number|stringid);
idnumber|stringthe event's id

Example

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

Details

The event is blockable. Return false to cancel the default processing.

See also
Back to top