Kendo UI Scheduler: Custom view and edit behavior
问题 I've been looking into this for a few days now and searched the forums high and low. Both in stack overflow, as well as Telerik's own forums, to no avail. I'm using a Kendo UI scheduler component in an MVC application. Below is part of the index.cshtml that creates the scheduler. @(Html.Kendo().Scheduler<TaskViewModel>() .Name("scheduler") .Views(views => { views.CustomView("ThreeDayView"); }) .DataSource(d => d .Read("Read", "Home") .Create("Create", "Home") .Destroy("Destroy", "Home")