我想禁用调度程序中的时间部分。当我让 .MinorTickCount(0) 一直隐藏但全天日期插槽上的单击事件无法正常工作时。
当我删除 .MinorTickCount(0) 然后单击事件工作正常。但我想一直删除。我只需要一整天而已。
@(Html.Kendo().Scheduler<FEWO.Web.Models.MeetingViewModel>()
.Name("scheduler")
.Date(new DateTime(2007, 12, 13))
.Selectable(true)
.AllDaySlot(true)
.MinorTickCount(0)
我该如何解决这个问题?