我在MVC应用程序中使用dhtmlx
调度程序。
我添加了一个自定义按钮,它只是一个动作的链接。不处于只读模式时,该按钮可以正常工作。我的问题是,当灯箱处于只读模式时应该使用此按钮,并且出于某种原因,在此模式下按钮似乎被禁用。按钮显示,但不会将我链接到我需要去的地方。
修改
我如何添加自定义按钮:
scheduler.config.buttons_right = ["dhx_delete_btn", "enroll_button"];
scheduler.locale.labels["enroll_button"] = "Enroll";
我的按钮事件:
scheduler.attachEvent("onClick", function(id, e1){
scheduler.attachEvent("onLightboxButton", function(button_id, node, e){
if(button_id == "enroll_button"){
window.location = "/Calendar/Enroll?id="+id;
}
});
})