Unplanned
Last Updated: 25 Apr 2017 13:12 by ADMIN
Unplanned
Last Updated: 24 Jun 2021 09:44 by ADMIN
If you move an item from one level to another into the tree, the indent of the corresponding row won't get updated. This is reproducible only if the new parent of the moved item is expanded, while the operation is executed.

Usually, this can be reproduced by calling the ExpandHierarchyItem() for the new parent item method just after the moving of the original item.

To resolve this you can delay the expanding of the item. Note that the expanding is executed manually by calling the ExpandHierarchyItem() method. So, you can use a dispatcher with a lower DispatcherPriority to delay this.

Or alternatively, you can collapse the item before expanding it (using the CollapseHierarchyItem() method).
Unplanned
Last Updated: 04 Aug 2016 09:20 by Nicolas
As a workaround you can try executing the selection in a Dispatcher with DispatcherPriority.Render.
This may not apply in the case when there are many nodes outside the View area. 
Unplanned
Last Updated: 26 May 2019 20:23 by Buks
Unplanned
Last Updated: 11 Aug 2016 14:04 by ADMIN
ADMIN
Created by: Vera
Comments: 0
Category: TreeListView
Type: Feature Request
4
Asynchronous mode for ExpandAllHierarchyItems()
Unplanned
Last Updated: 04 Aug 2016 09:20 by ADMIN
Unplanned
Last Updated: 09 Nov 2020 14:01 by ADMIN
Created by: Vesa
Comments: 1
Category: TreeListView
Type: Feature Request
3
We have many use cases where we have multiple panels and we want a tree control (TreeListView or TreeView) to control the contents of the other panels based on selection. Because the selection always happens on MouseDown instead of MouseUp it is impossible to drag & drop items from the tree without changing the selection and thus the contents of the other panels.
Unplanned
Last Updated: 28 Feb 2020 14:53 by ADMIN
Created by: Dinko
Comments: 0
Category: TreeListView
Type: Feature Request
3
The control does not have a build-in expand/collapse animation. 
Unplanned
Last Updated: 09 Oct 2017 17:52 by ADMIN
ADMIN
Created by: Dilyan Traykov
Comments: 0
Category: TreeListView
Type: Feature Request
3

			
Unplanned
Last Updated: 05 Aug 2016 13:49 by ADMIN
Unplanned
Last Updated: 04 Aug 2016 09:21 by ADMIN
ADMIN
Created by: Yordanka
Comments: 0
Category: TreeListView
Type: Feature Request
3

Currently, the RadTreeListView control does not fully support the merged cells functionality due to the different levels of the hierarchy of the items displayed by the control.

Unplanned
Last Updated: 04 Aug 2016 09:20 by ADMIN
The goal is to expand a second node each time you expand a particular node from the RadTreeListView. The data of the second node is loaded on demand, but it is not shown when the node itself is expanded.
Unplanned
Last Updated: 19 Nov 2019 10:42 by ADMIN
Created by: Gonzalo
Comments: 0
Category: TreeListView
Type: Feature Request
2
Expose API to allow customizing the appearance of the tree lines.
Unplanned
Last Updated: 12 Jun 2019 11:01 by ADMIN
Created by: Andreas
Comments: 0
Category: TreeListView
Type: Feature Request
2
 
Unplanned
Last Updated: 04 Aug 2016 09:21 by John
Unplanned
Last Updated: 08 Dec 2023 15:42 by Martin Ivanov

By default the AutoExpandItemsAfterFilter property of RadTreeListView is set to True, which means that when you filter the data, the parents of all found child items will be expanded automatically. However, if you call the CollapseAllHierarchyItems method this functionality stops working.

To work this around, you can reset the ItemsSource property instead of using the CollapseAllHierarchyItems.

 

Unplanned
Last Updated: 24 Oct 2019 11:37 by ADMIN
Add a mechanism that allows you to sort each child level separately. For example, by applying a different sort descriptor to each child hierarchical view collection.
Unplanned
Last Updated: 14 Dec 2018 14:43 by ADMIN
Sometimes the cells from more than one row are copied even though the SelectionMode is Single. As a workaround, you can clear the SelectedCells collection of the control in the Copied event:
this.RadTreeListView.SelectedCells.Clear();


1 2