I am running into a limitation with the <kendo-scheduler> component regarding how it determines the current time.
In our Angular application, we do not rely on the user's local operating system clock. Instead, we calculate a synchronized "Server Time" to ensure our scheduling is 100% accurate, regardless of whether a user's physical machine clock is drifting or set incorrectly.
The issue is that Kendo UI internally relies on the browser's native new Date() and Date.now() to determine the current time. Because of this, the Scheduler has no way to know about our application's synchronized time.
Example of the Impact: Let's say a user's physical laptop clock is set to 10:00 AM, but our application's synchronized server time is actually 1:00 PM.
The Scheduler's red "Current Time" marker line will render at 10:00 AM.
The Scheduler will highlight "ongoing" events that are happening at 10:00 AM.
Clicking the "Today" navigation button calculates the active day based on the 10:00 AM OS time.
Currently, I don't see an Input or API in Kendo to pass a custom "Now" value or time-provider function to the component, so the Scheduler constantly forces the physical OS time onto the UI.
If you have any built-in solution or recommended workaround for this scenario, please let me know.

In Kendo Scheduler Angular,
Date Header displays an incorrect value when slotduration is set to "full day" in timeline month view. it should not display 12:00 AM in each slot.
I'm trying to install the Scheduler in an Angular project but I'm getting the following error:
Could not resolve dependency:
@angular/localize@"^19.0.0" from the root project
Conflicting peer dependency: @angular/compiler@19.0.6
node_modules/@angular/compiler
peer @angular/compiler@"19.0.6" from @angular/localize@19.0.6
node_modules/@angular/localize
@angular/localize@"^19.0.0" from the root project
Fix the upstream dependency conflict, or retry
this command with --force or --legacy-peer-deps
to accept an incorrect (and potentially broken) dependency resolution.
I did tried with the --legacy-peer-deps flag but no luck.
Here is the version of what I'm running on my project
Angular CLI: 19.0.6
Node: 22.13.0
Package Manager: npm 11.0.0
OS: win32 x64
Hello.
We are using scheduler timeline view to show workers work schedule. We treat workers as resources. In some production environments we have more than 800 workers and in such cases application is very laggy or even not responding. In real life scenario we have custom styling for each slot depending on workers out of work days or configured work shift color. In provided stackblitz sample we limited ourselves to simple scheduler and still for hundreds of resources there are problems with performance.
Can you suggest solution for this issue or provide paging/virtualization for timeline view?
https://stackblitz.com/edit/angular-ebvckh?file=src%2Fapp%2Fapp.component.ts

how to change the click function of the ellipsis in kendo ui kendo-scheduler-month-view?
i need to change the click function of the ellipsis on the shown screenshot below:
<kendo-scheduler
[resources]="[]"
[kendoSchedulerBinding]="events"
[(selectedViewIndex)]="schedulerView"
[slotClass]="getSlotClass"
[selectedDate]="selectedDate"
[slotDivisions]="1"
[selectable]="true"
[isSlotSelected]="isSlotSelected"
(slotDragStart)="onSlotDragStart($event)"
(slotDrag)="onSlotDrag($event)">
<kendo-scheduler-month-view [eventHeight]="18" [eventClass]="getEventClass">
<ng-template kendoSchedulerEventTemplate let-event="event" let-resources="resources">
<ng-template *ngTemplateOutlet="eventTemplate; context: { $implicit: event.dataItem }"></ng-template>
</ng-template>
</kendo-scheduler-month-view>
</kendo-scheduler>
<kendo-scheduler
[resources]="[]"
[kendoSchedulerBinding]="events"
[(selectedViewIndex)]="schedulerView"
[slotClass]="getSlotClass"
[selectedDate]="selectedDate"
[slotDivisions]="1"
[selectable]="true"
[isSlotSelected]="isSlotSelected"
(slotDragStart)="onSlotDragStart($event)"
(slotDrag)="onSlotDrag($event)">
<kendo-scheduler-month-view [eventHeight]="18" [eventClass]="getEventClass">
<ng-template kendoSchedulerEventTemplate let-event="event" let-resources="resources">
<ng-template *ngTemplateOutlet="eventTemplate; context: { $implicit: event.dataItem }"></ng-template>
</ng-template>
</kendo-scheduler-month-view>
</kendo-scheduler>

hi, I want the scroll bar to always be visible. It appears when I start scrolling, but I want it to always be visible.
so #scheduler .k-scheduler-content {
overflow-y: scroll;
} this isn't working
please give some exaple on schedule timeline view
Hello everyone,
I'm currently working on implementing a Kendo UI Calendar in our project. However, I encountered an issue with the design output.
Expected Output: (Refer to Image 1 below)
Actual Output: (Refer to Image 2 below)
Despite using the same code, the output doesn't match the design we expected. The first image shows the correct design we're aiming for, while the second image reflects what we currently see.
In addition to the design issue, I need to bind dynamic colors to the year view of the calendar. These colors will be fetched from an API. However, I'm unsure how to correctly implement this.
Has anyone encountered similar issues or has experience with binding dynamic colors in Kendo UI's year view? Any guidance or code examples would be greatly appreciated!

I'm working with the Kendo Scheduler and need help displaying different types of leave requests with specific background colors. For example, if an employee applies for a "Sick Leave," I want the event to appear with a specific background color in the Scheduler across different views (Year, Month, and Day).
Is there a way to dynamically apply these colors based on the leave type, so that each leave type (e.g., Sick Leave, Casual Leave, Privilege Leave) has a distinct background color in all views?
Any guidance or code samples would be greatly appreciated.
Thanks in advance!

Hi.
In JQueryUI Scheduler component is possible to customize views extending class.
Here's Kendo documentation with example:
https://docs.telerik.com/kendo-ui/knowledge-base/custom-view
Our old schduler application used a custom view obtained with this feature and we need to port same behaviour in the new angular application.
Is possible to customize Scheduler' views in Kendo UI for Angular in the same way you gave possibility with JQueryUI and how?

Hi,
Is there a possibility to give background colour to a weekday in Kendo Scheduler based on some conditions like how we can do it for weekends as seen in the screenshot.. We want to mark holidays in a different colour in the scheduler.
Thanks
Varun
