Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Build JavaScript UI
Javascript
Telerik
Build modern .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
AI for Developers & IT
Ensure AI program success
AI Coding
AI Engineering
Additional Tools
Enhance the developer and designer experience
Testing & Mocking
Debugging
UI/UX Tools
CMS
Free Tools
Support
Resources
Design and Productivity Tools
Hi! Is there any way to add this in schedule grid? Vertical lines for open and closed hours.
Hi Ali,
The custom vertical lines can be added in the Kendo UI Scheduler using the following custom approach:
ngAfterViewInit() { var td = document.querySelectorAll(".k-scheduler-table td"); td.forEach((slot) => { var date = new Date(slot.attributes['ng-reflect-invariant-start'].value); if(date.getHours() === 4 && date.getMinutes() === 0) { slot['style'].borderLeft = '2px solid red'; } if(date.getHours() === 12 && date.getMinutes() === 30) { slot['style'].borderLeft = '2px solid green'; } }) }
In this StackBlitz example, I have added vertical lines in the Scheduler using the above discussed approach.
Please note that this custom approach is not officially supported by Telerik and may need further modifications.
I hope this information guides you in the right direction.
Regards, HetaliProgress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.