Skip to main content

onBeforeQuickInfo

Description

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

onBeforeParse: (id: string | number) => void

Parameters

  • id - (required) number | string - the 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.

Need help?
Got a question about the documentation? Reach out to our technical support team for help and guidance. For custom component solutions, visit the Services page.