
var scheduler = $("#ReservationsTimeLine").data("kendoScheduler");
var start = Date.now();
var end = start + 2 * 60 * 60 * 1000;
scheduler.startDate = start;
scheduler.endDate = end;
scheduler.dataSource.read();
scheduler.refresh();
}, 60000); //1 minute
9 Answers, 1 is accepted
In that case you could consider using SignalR. That way the Scheduler will be automatically refreshed immediately after a change occurred elsewhere.
Regards,
Alexander Popov
Telerik

Automatically scrolling the Timeline view is not supported. You can try performing that manually once the Scheduler's dataBound or the DataSource's push events are triggered.
Regards,
Alexander Popov
Telerik

I'm also looking for this feature. My scheduler Month Timeline View is big due to many lines of a resource on the left side. When page is loaded, only days 1-7 of a month are visible. User has to scroll all the way to the bottom and then scroll to the right to get to the day of the month (today is 18th). But if they're scrolling at the bottom of the page, they can't see the days which are at the top of the screen. So they have to go back to the top, check what day it is, then scroll to the bottom of the page and scroll to the right again.
This madness could be resolved by scheduler automatically pre-scrolling the page to the current day that is marked with a red bar on top.
Could you please find a way to do it? My client really needs it.
Thank you.
For convenience I created small demo which shows how you can scroll the "Timeline" views to given time slot:
You can use the above demo as baseline tho achieve the desired custom solution.
Regards,
Vladimir Iliev
Telerik

Could you please modify the previous example that I provide in order to reproduce the issue and list it here? This would help me get better overview of the exact setup that you have and advice you better how to proceed.
Regards,
Vladimir Iliev
Telerik

Vladimir,
I'm not working on that project anymore.
I created a workaround to refresh the browser ever .. x minutes.
But it's nice to see people picked it up.
Sorry for my late reply

Vladimir:
I've figured it out. I have modified the demo to scroll to today. And then used Navigate event to capture a new date when Calendar is used to go to another date and then Databound event to scroll to that day.
Thanks