我使用下面的代码来捕获Kendo Scheduler事件上的click事件。
$(document).on("click", ".k-event", function (e) {......
但只有当我点击" items / events"它才会生火。在调度程序上。我想抓住空单击的事件。
这样写,但没有用
$(document).on("click", ".k-nonwork-hour", function (e) {
alert(d);
});
答案 0 :(得分:1)
你可以在选项中添加onEdit处理程序:
edit: function(editEvent){
if(editEvent.event.isNew()){
editEvent.preventDefault(); // to stop edit dialog from appearing
// call you custom code here:
}
}