Kendo UI Scheduler事件链接

时间:2014-12-22 15:32:33

标签: kendo-ui kendo-scheduler

单击某个事件时是否可以打开网址?我想将用户路由到包含与事件相关的详细信息的网址。

1 个答案:

答案 0 :(得分:0)

是的,你可以。只需处理调度程序的change事件,如下所示:

$("#scheduler").kendoScheduler({
      change: function (e) {
        e.preventDefault();                           // prevent the default action
        if (e.events.length > 0) {                    // if true then user clicked an event, not an empty slot
        window.location.href = 'stackoverflow.com';   // replace with the desired url
        }
      },
      // ... set other properties ...
});

e.events是一个包含点击事件列表的数组。

Kendo Scheduler Change Event