Hi I'm using the SfTreeNavigator control with a HierarchicalDataTemplate.
If I try to set the selected item with the SelectedItem property, it works on the first level only.
Selecting an item in a lower level doesn't select anything.
XAML:
<sfnavigation:SfTreeNavigator
ItemsSource="{Binding RootFolder.Models}"
SelectedItem="{Binding SelectedItem, Mode=TwoWay}"
....>
<sfnavigation:SfTreeNavigator.ItemTemplate>
<sfprimitives:HierarchicalDataTemplate ItemsSource="{Binding Path=Models}">
....
Maybe selecting an item of a lower level is not supported?
Thanks