HI,
I have a problem. I have AutoCompleteTextBox and TreeView, both work with the same SelectedItem.
The node must expand, when the user uses AutoCompleteTextBox, but it only works only if I expand node per MouseClick and Collapse it.
Thanks!
I have a problem. I have AutoCompleteTextBox and TreeView, both work with the same SelectedItem.
The node must expand, when the user uses AutoCompleteTextBox, but it only works only if I expand node per MouseClick and Collapse it.
<telerik:RadTreeView Grid.Row="1" Grid.ColumnSpan="3" IsEnabled="{Binding DisableOnEditMode, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" ScrollViewer.VerticalScrollBarVisibility="Auto" ScrollViewer.HorizontalScrollBarVisibility="Auto" SelectedItem="{Binding SelectedItem, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"> <telerik:RadTreeViewItem IsExpanded="True" Header="Nachschlagstabellenliste" Style="{StaticResource HeaderItem}" > <telerik:RadTreeViewItem Header="Dokumenttyp" ItemTemplate="{StaticResource LookupItemTemplate}" Style="{StaticResource SubHeaderItem}" ItemsSource="{Binding DocumentTypes, UpdateSourceTrigger=PropertyChanged}"/> <telerik:RadTreeViewItem Header="Dokumentart" ItemTemplate="{StaticResource LookupItemTemplate}" Style="{StaticResource SubHeaderItem}" ItemsSource="{Binding DocumentSysTypes, UpdateSourceTrigger=PropertyChanged}"/>...Thanks!