Kendo UI 调度程序禁用删除确认或更改其内容

Kendo UI Scheduler disable remove confirm or change its content

我正在使用 Kendo UI Scheduler。现在,当我想从调度程序中删除一个项目时,会出现一个弹出窗口并要求确认:

我不需要这个确认,但似乎没有禁用它的属性。

如果没有直接的解决方法,我也可以更改对话框的内容。为此,我尝试在对话框出现时获取 ready event。但是下面列出的 none 解决方案有效。

//k-window-title is a css class of the popup
$(document).on("ready", ".k-window-title", function () {
    console.log("1");
});

$(".k-window-title").ready(function () {
    console.log("2");
});

$(".k-window-title").fadeIn(1000, function () {
    console.log("3");
});

我还向属性 remove 添加了一个事件,但这只对 Kendo 网格做了一些事情,该网格也显示在页面上。

所需操作:单击事件的 'x' 按钮立即从日程表中删除该事件。

您没有显示调度程序组件配置代码,但您想要

  editable: {
    confirmation: false
  },

https://docs.telerik.com/kendo-ui/api/javascript/ui/scheduler/configuration/editable.confirmation