The `WorkWeekView` and `DayView` components only support displaying a continuous range of days, defined by `workWeekStart` and `workWeekEnd` (or `numberOfDays`). There is no way to specify an arbitrary set of non-consecutive weekdays (e.g., Monday, Wednesday, and Saturday) and render them as side-by-side columns in a single view.
Customers who operate on non-standard schedules — such as shift workers, part-time staff, or businesses with non-traditional work weeks — cannot represent their schedule accurately in the Scheduler without resorting to CSS workarounds that break event positioning.
Introduce a `days` prop (or equivalent) on `WorkWeekView` and `DayView` that accepts an array of `Day` enum values. When provided, the view should render only the specified days as columns, in the declared order, regardless of whether they are consecutive.
<WorkWeekView days={[Day.Monday, Day.Wednesday, Day.Saturday]} />In the jQuery version of the scheduler, there is an option to disable snapping and to allow free move of the events.
How to achieve this behaviour in the React version?
We would like a virtualization of the timeline: https://www.telerik.com/kendo-react-ui/components/scheduler/api/TimelineViewProps/
We use the timeline for planning, when we have many rows with many columns it becomes slow.
Especially in combination with drag & drop hooks: https://www.telerik.com/kendo-react-ui/components/common/drag-and-drop/
In the timeline view of a scheduler control we would like to be able to reorder the resources in the left-hand column so I can logically group them.
Hi Team,
We need support for implementing year view in scheduler in same way, it is supported in Kendo UI for JQuery. We would like to know the way through which it can be easily replace by native feature of Kendo React Scheduler.