Hello,
I am using kendo timeline javascript way . initially i bring only content for 1 timeline item . on timeline change i send request to request content for another item.
1) I am able to get the content but on updating the data source using
$("#SampleTimeline").data('kendoTimeline').dataSource.data()[i].set("Description",response)it refresh, the timeline and it moves to initial first item . I also tried
$("#SampleTimeline").data('kendoTimeline').refresh() It does same , moves to first item
2) How to get index of clicked item in timeline ? so that i can open dynamically item that was clicked. (After refresh it moves to 1st content, which is not good as UI/UX)