onEventSelected

当用户在调度器中选择一个事件时触发

void onEventSelected(string id);
idstring被选中事件的ID

Example

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

See also
返回顶部