How does one programmatically scroll through the resources (vertical scroll) in a timeline view scheduler that is grouped by resources?
Thanks!
1 Answer, 1 is accepted
1
Accepted
Nadya | Tech Support Engineer
Telerik team
answered on 29 Sep 2023, 08:47 AM
Hello, Tibor,
In order to scroll programmatically through resources you can use the NavigateToResourcemethod. It navigates the grouped view to a resource with a specified index.
TimelineGroupingByResourcesElement view = radScheduler1.SchedulerElement.ViewElement as TimelineGroupingByResourcesElement;
view.NavigateToResource(5);
I hope this helps. Should you have any other questions do not hesitate to contact me.