onBeforeEventDragIn

在被拖动的事件进入 scheduler 区域之前触发

boolean onBeforeEventDragIn(string id,Event e);
idstring事件的 id
eEvent原生事件对象
boolean决定默认事件操作是否继续 (true) 或被取消 (false)

Example

scheduler.attachEvent("onBeforeEventDragIn", function (id, e){
    // 在这里放置任何自定义逻辑
    return true;
});

Details

此事件仅在不同 scheduler 之间进行拖放操作时触发。

See also
  • Articles
  • 返回顶部