fires immediately before the Quick Info popup is displayed for an event
id | number|string | the event's id |
scheduler.attachEvent("onBeforeQuickInfo", function(id) {
if(scheduler.getEvent(id).readonly){
return false;
}
return true;
});
The event is blockable. Return false to cancel the default processing.