Completed
Last Updated: 04 Nov 2019 11:11 by ADMIN
Release LIB 2019.3.1104 (11/04/2019)
The behavior is reproducible when the TreeLines are visible and we have frozen columns. When the RadTreeListView is scrolled the TreeLines in the Frozen column is also scrolled.
Completed
Last Updated: 09 Nov 2018 15:27 by ADMIN
Completed
Last Updated: 16 Mar 2018 09:20 by ADMIN
Completed
Last Updated: 29 Aug 2022 07:06 by ADMIN
Release LIB 2022.2.829 (29 August 2022)
Unplanned
Last Updated: 06 Aug 2018 13:26 by Vladimir
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();


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

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

Completed
Last Updated: 07 Oct 2016 10:11 by ADMIN
Expanded TreeListViewRow cannot be collapsed when select a child node and SelectionMode is set to "Expanded".

Steps to reproduce:
1. Expand the root node
2. Select a child node
3. Try to collapse the root node
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. 
Completed
Last Updated: 25 Jan 2016 14:50 by ADMIN