本文介绍了如何禁用Kendo UI Scheduler中的事件?我只是使其变为只读的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在kendo UI Scheduler中禁用该事件?我从官方网站示例中研究了该示例,并看到该事件中的所有单元都有双击事件以创建和删除以及其他事件,但是现在我仅使用它来显示结果,那么如何防止所有创建,删除,编辑事件?

How to disable the event in kendo UI scheduler?I study the example from the official website examples,and see all of the cell in event have double click event to create and delete and other events,but now I just use it to show the result,so how to prevent all the create,delete,edit events?

推荐答案

使用 editable配置选项:

Use the editable configuration option:

$("#scheduler").kendoScheduler({
  date: new Date("2013/6/6"),
  dataSource: [
    {
      start: new Date("2013/6/6 08:00 AM"),
      end: new Date("2013/6/6 09:00 AM"),
      title: "Brunch"
    }
  ],
  editable: false
});

或者如果您使用的是MVC包装器:

or if you're using the MVC wrappers:

.Editable(false)

如果您要禁用特定事件,请参见此答案.

If you want to disable specific events, see this answer.

这篇关于如何禁用Kendo UI Scheduler中的事件?我只是使其变为只读的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-21 08:15