Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
Hello
I want to change the start time (e.g. from 9:00 to 10:00) after the scheduler has been initialized.
Is destroying & re-creating the scheduler (http://www.telerik.com/forums/how-to-change-start-time-and-resources) still the best option?
Regards,
Pawel
scheduler.setOptions({startTime:
new
Date()});
//set the new startTime
scheduler.view(scheduler.view().name);
//reload the current View, so that the changes are applied to it
Hi Alexander,
it works perfectly - thanks.