Unplanned
Last Updated: 04 Aug 2016 09:20 by ADMIN
Reproducible on http://demos.telerik.com/silverlight/#TreeListView/TreeListViewDragAndDrop
Completed
Last Updated: 09 Nov 2018 15:30 by ADMIN
Completed
Last Updated: 03 Oct 2018 11:24 by ADMIN
Completed
Last Updated: 06 Apr 2022 10:25 by ADMIN
Release LIB 2022.1.406 (06 April 2022)
If the data items of RadTreeListView implement the IEditableObject interface, their EndEdit method is fired on begin cell edit in some cases. This usually happens when you click on a cell to start its editing and previously the focus was on another row (than the clicked one).
Completed
Last Updated: 09 Nov 2018 15:29 by ADMIN
Declined
Last Updated: 17 May 2022 09:35 by ADMIN

I am using a RadTreeListView with MaterialDesign theme in a Windows WPF application. By default the selected cell is indicated by a grey line at the bottom of the cell. I don't want an indication for the selected cell and used the advise from forum to change the style as follows:


  <Style TargetType="telerik:GridViewCell" BasedOn="{StaticResource GridViewCellStyle}">
    <Setter Property="CurrentBorderBrush" Value="Transparent"/>
  </Style>

This works fine.

But if changing the Windows application with Alt+Tab and then back to my application with Alt+Tab the cell selection (grey underline) is displayed.

Unplanned
Last Updated: 16 Jun 2022 13:26 by Martin Ivanov
Currently, the Shift + click action (when SelectionMode is Extended) selects only the expanded items. Any child items that are in the collapsed items collection of a node won't get selected.

Add a mechanism to allow this type of selection. It can be built-in or some events or method overrides can be introduceds in order to be bale to easily interfere and customize the extended selection.
Completed
Last Updated: 24 Jul 2015 09:53 by ADMIN
ADMIN
Created by: Maya
Comments: 0
Category: TreeListView
Type: Bug Report
0

			
Completed
Last Updated: 18 May 2017 14:59 by ADMIN

Available in LIB version: 2017.2.522
Completed
Last Updated: 01 Jun 2017 08:47 by ADMIN
Unplanned
Last Updated: 04 Aug 2016 09:21 by ADMIN
Declined
Last Updated: 07 Sep 2016 07:31 by ADMIN
Unplanned
Last Updated: 04 Aug 2016 09:20 by ADMIN
ADMIN
Created by: Dimitrina
Comments: 0
Category: TreeListView
Type: Feature Request
0
Currently, setting HierarchyIndent property does not work as expected for nested rows.
Completed
Last Updated: 05 Jan 2017 14:30 by ADMIN
Completed
Last Updated: 22 Oct 2015 13:10 by ADMIN
Declined
Last Updated: 08 Jul 2014 10:53 by ADMIN
Unplanned
Last Updated: 24 Apr 2023 09:01 by Martin Ivanov
The gray background that is shown when you hover an item is not hidden when the pointer leaves the item. That happens when you scroll on a touch device. 

To work this around, you can hide the pointer over background completely. To do this, you can edit the ControlTemplate of RadListView item and remove the Setter from the PointerOver Visual State.
Completed
Last Updated: 07 Nov 2023 06:57 by ADMIN
Release R3 2023 SP1
When the last column's Width is set to "*", applying a filter will resize the columns.

A possible workaround would be the following one:
private void RadTreeListView_Filtering(object sender, Telerik.Windows.Controls.GridView.GridViewFilteringEventArgs e)
{
    var treeListView = sender as RadTreeListView;
    var internalColumns = treeListView.GetType().GetProperty("InternalColumns", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance).GetValue(treeListView);
    internalColumns.GetType().GetProperty("ColumnWidthsCalculationPending", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic).SetValue(internalColumns, true);
}

private void RadTreeListView_Filtered(object sender, Telerik.Windows.Controls.GridView.GridViewFilteredEventArgs e)
{
    Dispatcher.BeginInvoke(new Action(() =>
    {
        var treeListView = sender as RadTreeListView;
        var internalColumns = treeListView.GetType().GetProperty("InternalColumns", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance).GetValue(treeListView);
        internalColumns.GetType().GetProperty("ColumnWidthsCalculationPending", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic).SetValue(internalColumns, false);
    }), System.Windows.Threading.DispatcherPriority.Loaded);
}
Unplanned
Last Updated: 21 Jan 2019 10:46 by ADMIN
Research a possible way to improve the expanding performance of TreeListViewRow.
Unplanned
Last Updated: 01 May 2024 09:14 by Martin Ivanov

The horizontal scrollbar of RadTreeListView is displayed even the setup suggest that it should not be. For example, this happens if you have a single column with its Width set to * which means that the RadGridView should span in the available space without the need of displaying a horizontal scrollbar. To recreate this the RowIndicatorVisibility property should be set to Collapsed. Additional to that there should be a hierarchy and the items should be expanded.

To work this around, you can set a fixed Width for the column. If you want this to be dynamic you can calculate the width on SizeChanged of RadTreeListView