跳转到主要内容

onBeforeQuickInfo

Description

在 Quick Info 弹出窗口显示之前触发的事件

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

Parameters

  • id - (required) number | string - 事件的 id

Example

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

return true;
});

Details

此事件可以被阻止。返回 false 将阻止默认行为的执行。

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.