How to enable/set Kendo Scheduler Display Time interval in Minutes
. As of now its displayed in Hours
. Like 7.00 AM , 8.00 AM
如何启用/设置Kendo调度器,以分钟为单位显示时间间隔。到目前为止,它以小时为单位展出。大概早上7点,8点
I need to make it displayed like Below:
我需要让它显示如下:
7.00 AM ... 7.15 AM ... 7.30 AM ... 7.45 AM ... 8.00 AM
7.00我……7.15我……7.30我……7.45我……8.00点
So far i have tried:
到目前为止,我尝试过:
$("#scheduler").kendoScheduler({
...
minutesPerRow:15,
...
});
Where its not getting worked.
没有工作的地方。
How to set the row interval display time?
如何设置行间隔显示时间?
1 个解决方案
#1
2
I have found answer my self.
我找到了答案。
I need to set majorTick: 15
instead of minutesPerRow. Under the Views attribute of kendo scheduler.
我需要设置大点:15,而不是分钟。在kendo调度程序的视图属性下。
views: [{ type: "day", selected: true, majorTick: 15 }],
Take a look at the Kendo Scheduler Configuration & Fields & Methods & Events
查看Kendo调度器配置&字段&方法&事件。
#1
2
I have found answer my self.
我找到了答案。
I need to set majorTick: 15
instead of minutesPerRow. Under the Views attribute of kendo scheduler.
我需要设置大点:15,而不是分钟。在kendo调度程序的视图属性下。
views: [{ type: "day", selected: true, majorTick: 15 }],
Take a look at the Kendo Scheduler Configuration & Fields & Methods & Events
查看Kendo调度器配置&字段&方法&事件。