Hello,
I am currently working with the KendoReact Scheduler component and trying to configure a custom schedule for the WorkWeekView.
My goal is to display only specific, non-consecutive working days within the work week. For example, a user works only on Monday, Wednesday, and Saturday. I need the Scheduler to render only these 3 columns, hiding the days in between (Tuesday, Thursday, Friday, Sunday).
However, WorkWeekView only provides workWeekStart and workWeekEnd, which forces us to display a continuous range of days (e.g., Mon-Wed).
Is there an out-of-the-box way or a recommended workaround to display non-continuous days in KendoReact Scheduler without breaking the layout?
Currently, I am trying to hide the columns dynamically using custom CSS injected via a React useEffect hook based on data-attributes like data-slot-range and data-range-index. While it visually hides the columns, it still causes rendering issues with events and layout calculations. Are there any better workarounds available for this scenario?
Thank you!
