onEventDragIn

当拖动的事件进入调度器时触发

void onEventDragIn(string id,Event e);
idstring事件的 id
eEvent原生事件对象

Example

scheduler.attachEvent("onEventDragIn", function (id, e){
    //这里编写自定义逻辑
});

Details

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

See also
  • Articles
  • 返回顶部