Completed
Last Updated: 11 Oct 2023 08:02 by ADMIN
Release 6.3.0
Victor
Created on: 28 Jun 2023 11:09
Category: TreeView
Type: Bug Report
0
TreeView: Items are coerced immediately when SelectedItems and CheckedItems collections are set before ItemsSource

Coerce items at later stage, as now when programmatically add items to Selected Items and Checked Items. and both collections are set before the ItemsSource, indication for selection and checked is not presented. 

Issue: 

<telerik:RadTreeView x:Name="treeView" 
                         CheckBoxMode="Recursive" Grid.Row="1"
                         SelectedItems="{Binding CheckedItems, Mode=TwoWay}"
                          ItemsSource="{Binding Items}">

 

Work:

<telerik:RadTreeView x:Name="treeView" 
                         CheckBoxMode="Recursive" Grid.Row="1"
                              ItemsSource="{Binding Items}"
                         SelectedItems="{Binding CheckedItems, Mode=TwoWay}">

 

0 comments