Kendo UI Scheduler禁用删除确认或更改其内容

时间:2018-05-02 14:44:38

标签: javascript jquery kendo-ui kendo-scheduler

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

see picture

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

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

//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 Grid做一些事情,它也会显示在页面上。

1 个答案:

答案 0 :(得分:2)

所需操作:点击活动' x'按钮立即从计划中删除事件。

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

  editable: {
    confirmation: false
  },

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