kendoui 调度程序 - 在导航事件期间防止服务器调用

问题描述 投票:0回答:0

我需要防止在调度程序的

navigate
事件期间自动触发的服务器调用,因为我需要调用我的函数
LoadData
做很多事情然后以编程方式执行服务器调用
datasource.read()

调度程序配置了

weekTimeline view

我试过这样

navigate: function(e) {
        e.preventDefault(); //<<--this block all
                               

        LoadData() //<-- this perform a server call but before try to read the current scheduer view dates (that are not "updated" (are the old ones) because "e.preventDefault()" has blocked the movement from a week to the next 

}

这会阻止服务器调用,但也会阻止日期导航(不会在下周移动

是否有可能阻止服务器调用 only 并继续执行在此事件期间通常由调度程序完成的一切?

jquery kendo-ui kendo-scheduler
© www.soinside.com 2019 - 2024. All rights reserved.