当 lightbox 结构更新时触发
old_type | string | 原始 lightbox 结构的名称 |
new_type | string | 更新后的 lightbox 结构名称 |
gantt.attachEvent("onLightboxChange", function(old_type, new_type){
if(new_type == "milestone"){
alert("您已将任务类型更改为 'milestone'")
}
});
Back to top