Declined
Last Updated: 29 Sep 2015 07:45 by ADMIN
Too many TreeViewItems are created internally when using virtualization. This causes the tree to consume large amount of space when performing virtualization intensive tasks like CollapseAll or ExpandAll.

The XAML team recently reviewed this issue and will not be addressing it.
On ExpandALL / CollapseALL virtualization creates / recycles / reuses containers - RadTreeViewItems. You cannot be sure when the GarbageCollector will free up the currently unused containers.
Also after even number of invocations (ExpandAll + CollapseAll), the containers that are not freed up from memory is not increasing - it is constant which means there is no memory leak to worry for.
Declined
Last Updated: 11 Aug 2016 14:04 by ADMIN
When two equal objects are used in the source collection, the first is always selected when you try to select the others.

Workaround when TreeView is not databound.

Instead of adding objects directly in the TreeView's Items Collection, add RadTreeViewItems.
For Example, instead of
 treeView.Items.Add(1), 
treeView.Items.Add(2)

do

 treeView.Items.Add(new RadTreeViewItem(){Header = 1}, 
 treeView.Items.Add(new RadTreeViewItem(){Header = 2}

Workaround when TreeView is databound.

For example , if we databind the treeview to collection of DataItems and some dataitem is located in multiple places in the source collection.
Solution => Wrap the DataItem class in new class - DataItemWrapper. It can hold the underlying DataItem, add additional property  (for exampel ID) and override the Equals and GetHashCode methods.
This way different DataItemWrapper objects can hold equal DataItem objects. In such way if you bind the treeview to collection of DataItemWrappers the selection will be successful.

DECLINED:
The XAML team recently reviewed this bug  and won't be adressing it in future. It can be actually considered as feature request because selection should have notion for selected containers.
Unfortunately, the initial code design of the RadTreeView does not have such notion and the complexity of adding such feature now is very big.
Unplanned
Last Updated: 31 Mar 2020 11:15 by ADMIN
SelectedItems collection not updated when items are removed
Completed
Last Updated: 25 Sep 2015 10:46 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: TreeView
Type: Bug Report
17
Implemented Multiple selection mode which is consistent with the same mode in RadListBox, RadGridView, etc.

Multiple Selection refers to Selecting / Deselecting items with single Mouse click or single space key press.

Until Q3 2015 this Extended ans Multiple Selection had the same behavior.


Will be available in Q3 2015 Release.
Declined
Last Updated: 11 Aug 2016 14:04 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 1
Category: TreeView
Type: Bug Report
13
When TreeView is placed inside floating VS ToolWindow and item is selected the visual state remains unchanged after focus leaves the TreeView.
Unplanned
Last Updated: 29 Dec 2016 16:03 by ADMIN
Rendering issues occure when using Hierarchical virtualization mode and bring into view.
The issue is hit in both platforms - WPF and Silverlight. 
Completed
Last Updated: 11 Aug 2016 14:04 by ADMIN
If item is expanded from the UI and viewport is scrolled to the top calling BringIndexIntoView causes the viewport to lock while scrolling.

Available in LIB version: 2016.2.516 
Completed
Last Updated: 11 Aug 2016 14:04 by Mark
If RadTreeView.IsEnabled  false (or the tree is inside busy BusyIndicator), then ExpandItemByPath(or GetItemByPath) does not work.

Available in LIB version: 2016.2.525
Unplanned
Last Updated: 27 Dec 2016 12:47 by ADMIN
RadTreeViewItem.AutomationProperties.Name is not read correctly since version 2011.2
Unplanned
Last Updated: 27 Dec 2016 12:48 by ADMIN
In a virtualized TreeView, after ExpandAll and scroll operations, there are gaps in the TreeViewPanel.
Unplanned
Last Updated: 27 Jun 2018 17:48 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 3
Category: TreeView
Type: Bug Report
9
System.Windows.Media.Animation Warning is apparent during DragDrop in the TreeView in WPF. 
Declined
Last Updated: 11 Aug 2016 14:04 by David Liebeherr - rent-a-developer
When the RadTreeView is virtualizaed, the images are  not shown. This works when the tree is bound to collection of objects and the DefaultImageSource is bound.

Reason for deletion:
The workaround is easy - just bind the DefaultImageSrc, ExpandedImageSrc to string properties from the ViewModel.
Also, a possible fix would slow down the virtualization process in the RadTreeView.
Won't Fix
Last Updated: 21 Jul 2015 11:31 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: TreeView
Type: Bug Report
9
CheckedItems collection of RadTreeView contains all items.

Edit: Please avoid using this collection because it has never been implemented completely in RadTreeView. In DataBinding scenarios, you can use CheckBox in the ItemTemplate of the RadTreeView. Approach can be found here =>
http://docs.telerik.com/devtools/wpf/controls/radtreeview/how-to/howto-tri-state-mvvm.html 
CheckedItems colelction can be implemented in the ViewModels, instead of using the built-in property.

The XAML team has recently reviewed this issue and will not be addressing it as at this time the team is focusing on the bugs impacting the highest number of developers. If you have encountered this issue and it is blocking for your work please contact us through the support ticketing system with details on your setup and a reference to this item.
Declined
Last Updated: 01 Nov 2014 12:43 by Steve
When using binding to check state and dynamically adding subitem to a praticular items, the parent items check state is incorrectly set to Off (from ON) although the child item state is also On.

Marking this Declined. Binding to CheckState is not supported in MVVM scenarios. Please use the approach described here =>
http://www.telerik.com/help/wpf/radtreeview-howto-tri-state-mvvm.html
Declined
Last Updated: 11 Aug 2016 14:04 by ADMIN
When value types are inserted in the Items collection of RadTreeView and root values are duplicated in the children a StackOverflowException is raised after a call to ExpandAll.

The XAML has recently reviewed the status of this issue and won't be addressing it in future releases.
This is a design limitation - RadTreeView does not support duplication of value types in its Items / ItemsSource collections. 
This potentially can cause troubles with virtualization / selection / expandALL features.
Declined
Last Updated: 04 Nov 2014 09:37 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: TreeView
Type: Bug Report
9
Binding to IsChecked property doesn't work in TwoWay mode (ConvertBack doesn't work).

Declined.
IsChecked / CheckState are supported only in xaml-defined RadTreeViews. In databinding scenarios use the approach described here =>
http://www.telerik.com/help/wpf/radtreeview-howto-tri-state-mvvm.html
Declined
Last Updated: 21 Jul 2015 12:18 by Martin
We have a RadTreeView with "Visibility" property set to "Hidden".
We add dynamically RadTreeViewItems to the RadTreeView.
If we change the "Visibility" to "Visible" - the RadTreeView is NOT displayed.

Originally this item is logged for scenario with XBAP. Currently we are unable to reproduce such issue with WPF 4.0 and latest version of our controls.
Please open a new support thread if you encounter similar issues at your side.
Unplanned
Last Updated: 26 Feb 2018 12:40 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 2
Category: TreeView
Type: Bug Report
7
The scroll position resets when the measure of the treeview panel is fired for some reason.

For example, when the RadTreeView is placed inside a RadPanelBarItem and the RadPanelBar's ScrollViewer is disabled, resizing the RadPanelBar resets the RadTreeView scroll position. 
Completed
Last Updated: 23 May 2014 11:06 by James
The IsDragPreviewEnabled and IsDragTooltipEnabled properties don't work with the "NEW" DragDropExecutionMode.
Completed
Last Updated: 29 May 2014 12:11 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: TreeView
Type: Bug Report
6
Repro actions:
1) Hit the "End" key to go to the bottom
2) Hit the "Home" key to go back to the top
3) Mouse wheel does not move the scroll
4) The scroll arrows don't work either
5) They keyboard arrows don't work either, the selected item is displayed but they scroll bar does not move

See this video for reference.
1 2 3 4 5 6