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. 
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;
}

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: 12 Jun 2019 15:05 by ADMIN
Release R2 2019 SP
Unplanned
Last Updated: 04 Aug 2016 09:20 by ADMIN
Unplanned
Last Updated: 26 May 2019 20:23 by Buks
Completed
Last Updated: 09 Feb 2022 07:42 by ADMIN
Per the thread at "http://www.telerik.com/forums/isexpandablebinding-requires-user-interaction-with-control-to-take-effect" I have modified the IsExpandedRowBinding sample to recreate the problem. I modified the button to expand and collapse the first row. To reproduce the problem:

1. Expand the first row.
2. Scroll down so the first row is not visible but it's children are visible.
3. Press the button. The expected behavior is the first row should collapse but nothing happens.
4. Scroll up so the first row is visible. The first row collapses.
Unplanned
Last Updated: 05 Aug 2016 13:49 by ADMIN
Completed
Last Updated: 19 Feb 2020 15:35 by ADMIN
Release R1 2020 SP1
Declined
Last Updated: 29 Nov 2022 14:21 by ADMIN
Performance is degraded when a large number of columns are added dynamically by binding the Columns collection via an attached behavior.
Completed
Last Updated: 29 Aug 2022 07:06 by ADMIN
Release LIB 2022.2.829 (29 August 2022)
Completed
Last Updated: 06 Oct 2020 05:46 by ADMIN
Release LIB 2020.3.1012 (10/12/2020)
When the IsExpandedBinding property is bound to a custom property, and we use it to collapse and expand specific items, the rows inside the control will disappear.
Completed
Last Updated: 26 May 2020 08:34 by ADMIN
Release LIB 2020.2.525 (5/26/2020)
The Visibility of the DropPossibleIconElement inside the ControlTemplate of the TreeListViewDragCue is not collapsed when the drop is not possible in newer themes. 
1 2 3