Completed
Last Updated: 19 Oct 2015 10:37 by ADMIN
Completed
Last Updated: 25 Jan 2016 14:50 by ADMIN
Completed
Last Updated: 09 Nov 2018 15:30 by ADMIN
Completed
Last Updated: 03 Oct 2018 11:24 by ADMIN
Completed
Last Updated: 09 Nov 2018 15:29 by ADMIN
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
Completed
Last Updated: 05 Jan 2017 14:30 by ADMIN
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: 04 Aug 2016 09:21 by ADMIN
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: 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).
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.

Declined
Last Updated: 08 Jul 2014 10:53 by ADMIN
Unplanned
Last Updated: 04 Aug 2016 09:20 by ADMIN
Reproducible on http://demos.telerik.com/silverlight/#TreeListView/TreeListViewDragAndDrop
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: 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
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

 

1 2 3