Completed
Last Updated: 30 Mar 2020 04:37 by ADMIN
Release LIB 2020.1.330 (03/30/2020)
Completed
Last Updated: 12 Jan 2016 12:52 by ADMIN
Keyboard navigation stops working when setting SelectionMode to "Extended", SelectionUnit to "Cell"  and pressing twice the down keyboard key . 

The problem should be resolved with version Q1 2016. 
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.
Completed
Last Updated: 14 Jan 2020 16:31 by ADMIN
Release R1 2020
Created by: Martin Ivanov
Comments: 0
Category: TreeListView
Type: Bug Report
1

The JAWS screen reader cannot read the RadTreeListView and also its rows and cells.

This reproduces after the 2019.3.917 release.

To work this around create a custom RadTreeListViewAutomationPeer:

public class CustomTreeListView : RadTreeListView
{
	protected override AutomationPeer OnCreateAutomationPeer()
	{
		return new CustomTreeListViewAutomationPeer(this);
	}
}

public class CustomTreeListViewAutomationPeer : RadTreeListViewAutomationPeer
{
	public CustomTreeListViewAutomationPeer(RadTreeListView owner) 
		: base(owner)
	{
		var methodInfo = typeof(RadTreeListViewAutomationPeer).GetMethod("GetItemPeers", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic);
		methodInfo.Invoke(this, null);
	}

	protected override List<AutomationPeer> GetChildrenCore()
	{
		var frameworkPeer = new FrameworkElementAutomationPeer((FrameworkElement)this.Owner);
		return frameworkPeer.GetChildren();
	}
}

Completed
Last Updated: 19 Oct 2015 10:37 by ADMIN
Completed
Last Updated: 19 Oct 2020 10:22 by ADMIN
Release R3 2020 SP1
Selecting a large number of items through the UI or programatically with the Select method when in Extended SelectionMode leads to a degraded performance. As a workaround the Multiple SelectionMode can be used instead.
Completed
Last Updated: 20 Jan 2020 12:40 by ADMIN
Release LIB 2020.1.120
Hi,

    I found a bug when use MergeCells in grid view and tree list view, I am the license account, my support is out of date,But I still want to feadback the bug to you , I make a vedio in attachment

When use in radtreelistview , I can not explict set the MergedCellsStyle, maybe MergedCellsStyleSelector also have the bug.I just try MergedCellsStyle.

Unplanned
Last Updated: 06 Aug 2018 13:26 by Vladimir
Unplanned
Last Updated: 05 Jun 2018 13:37 by ADMIN
Completed
Last Updated: 16 Mar 2018 11:13 by ADMIN
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.

 

Completed
Last Updated: 13 Mar 2020 09:44 by ADMIN
Release LIB 2020.1.316 (03/16/2020)

The selected rows of TreeListView are not returned when calling SelectionPattern.GetSelection method.

The problem can be reproduced with RadGridView as well.

Declined
Last Updated: 26 Oct 2018 08:44 by ADMIN
workaround:
Extract the ControlTemplate for the TreeListViewRow and set the Style explicitly or remove the local Style setter.
Completed
Last Updated: 25 Jan 2016 14:50 by ADMIN
Unplanned
Last Updated: 11 Aug 2016 14:04 by Tim Ge
Items are expanded when they match the filtering criteria.

Once I added the filterdescriptor, the tree started to expand itself
and when I put a break point in RowIsExpandedChanged event handler
the treelistviewrow's IsExpanded property is already true

Can you have a look at the attached sample application
and try to achieve the following:
1. keep the on demand load (so only loadchildren when user clicked on the arrow to expand)
2. apply filter only on the expanded nodes
Completed
Last Updated: 18 Mar 2020 09:58 by ADMIN
Release LIB 2020.1.323 (03/23/2020)
The icon of the expand button seems truncated when the horizontal scrollbar is used.
Unplanned
Last Updated: 09 Dec 2021 09:20 by ADMIN
When dragging and dropping an item, to get the current item's place in the collection you would need to either use the underlying collection bound to the ItemsSource property or get it via reflection. Instead, change the ParentView and RootView properties of the HierarchicalChildCollectionView, to public, to not use the reflection approach.