Unplanned
Last Updated: 25 Apr 2017 13:12 by ADMIN
Completed
Last Updated: 23 Sep 2015 13:09 by ADMIN
There are large number of items for the TreeList (for example 3000) and you have all them initially collapsed.
For example you could modify the IsExpandedBinding demo to have 3000 items.
Then scroll down so the row with Drinks and Count = 2194 is at the top of the control and expand it.
The result is that both that row and the row with Drinks and Count = 2199 expand.
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).
Completed
Last Updated: 27 Jul 2020 10:55 by ADMIN
Release LIB 2020.2.2707
In some scenarios the hierarchy expand button is not visible when the HierarchyColumnIndex and FrozenColumnCount are equal.
Completed
Last Updated: 21 Feb 2014 10:27 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: TreeListView
Type: Bug Report
6
TreeListView root note collapses after scrolling.
Completed
Last Updated: 29 Sep 2015 10:17 by Simon
TreeListView is trying to expand its item which is empty.
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
Completed
Last Updated: 12 Jun 2019 15:05 by ADMIN
Release R2 2019 SP
Completed
Last Updated: 12 Oct 2022 12:14 by ADMIN
Release LIB 2022.3.1017 (17 Oct 2022)

An exception is thrown when you try to update the items source of RadTreeListView in an async method.

The following error is observed.
InvalidOperationException: The calling thread cannot access this object because a different thread owns it

To work this around ensure that only the main UI thread updates the item source.

Completed
Last Updated: 21 May 2021 06:39 by ADMIN
Release LIB 2021.2.525 (25/05/2021)
When the TreeListView lines are set to a column after a hidden one, they are not positioned correctly.
Completed
Last Updated: 13 Oct 2022 11:06 by ADMIN
Release LIB 2022.3.1017 (17 Oct 2022)

If you press Ctrl+Up/Down to change the selection and currency in TreeListView, the CurrentCellChanged event is fired. However, the e.NewCell property of the event arguments is null.

To get the new cell, use the CurrentCellInfo property of RadTreeListView.

private void RadTreeListView_CurrentCellChanged(object sender, GridViewCurrentCellChangedEventArgs e)
{
	var treeListView = (RadTreeListView)sender;
	GridViewCellInfo currentCell = treeListView.CurrentCellInfo;
}

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: 01 Apr 2025 15:47 by Benjamin

Currently, the DataFormatString property of the columns is applied only to the top-level rows and not to the child ones.

To work this around, create a new DataTemplate for the CellTemplate property of the column and set the StringFormat property of the Binding instance for the element that will be used to display the cell's value in view mode.

<telerik:GridViewDataColumn.CellTemplate>
    <DataTemplate>
        <TextBlock Text="{Binding MyPropertyValue, StringFormat=N2}"/>
    </DataTemplate>
</telerik:GridViewDataColumn.CellTemplate>

 

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: 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.

Declined
Last Updated: 28 Oct 2015 09:41 by ADMIN
ADMIN
Created by: Stefan
Comments: 1
Category: TreeListView
Type: Feature Request
3

			
1 2 3 4 5