我正在使用 MVC4 和 DHTMLX 调度程序。我不明白 DHTMLXScheduler.NET 如何触发 Data() 方法。
public ActionResult Data(string from, string to, string groupId)
{
return new SchedulerAjaxData(calendarModel);
}
我正在使用 MVC4 和 DHTMLX 调度程序。我不明白 DHTMLXScheduler.NET 如何触发 Data() 方法。
public ActionResult Data(string from, string to, string groupId)
{
return new SchedulerAjaxData(calendarModel);
}
如果启用数据加载,则会将类似这样的内容添加到客户端。
scheduler.load("/Scheduler/Data", "json");
默认情况下,它会向这个action发送ajax请求来加载所有的数据。正如我们从您的代码中看到的,您还启用了动态加载。所以它会根据当前显示的视图添加“from”和“to”参数来获取请求。请看这篇文章:http ://scheduler-net.com/docs/loading-data.html#big_datasets