Is there any way to know if the user has clicked on an item in RadTimeline? I would like to handle the click and do something with the selected timeline item, but my searching hasn’t revealed any way to handle this. I can capture the mouse click on MouseLeftButtonDown event, but I don’t see a way to tell which item was hit, if any.
Share
According to Telerik, this feature is not supported, but will be available for Q1 2012 SP1 or Q2 2012 release.
However, after researching it, I found a workaround that seems to work. If you override the TimelineItemTemplate with a DataTemplate that has a
MouseLeftButtonDownevent on it, then you can use the DataContext of the sender to get the bound data.XAML:
Code: