onBeforeQuickInfo

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

void onBeforeQuickInfo(number|stringid);
idnumber|string事件的 id

Example

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

Details

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

See also
返回顶部