Zum Hauptinhalt springen

onBeforeQuickInfo

Description

Wird unmittelbar ausgelöst, bevor das Quick Info Popup für ein Event angezeigt wird

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

Parameters

  • id - (required) string | number - die ID des Events

Example

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

return true;
});

Details

Dieses Event kann blockiert werden. Wenn false zurückgegeben wird, wird das Standardverhalten verhindert.

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.