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.
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: 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.
Declined
Last Updated: 28 Oct 2015 09:41 by ADMIN
ADMIN
Created by: Stefan
Comments: 1
Category: TreeListView
Type: Feature Request
3

			
Declined
Last Updated: 07 Sep 2016 07:31 by ADMIN
Declined
Last Updated: 08 Jul 2014 10:53 by ADMIN
Declined
Last Updated: 09 Apr 2014 08:48 by ADMIN
Created by: Trifelino
Comments: 1
Category: TreeListView
Type: Feature Request
0
Please help ... treelistview is inserting unwanted rows in between records.

Sample image attached and xaml code below ...

Please send sample application of treelistview that is working properly if possible.

Thanks.


trifee

             <telerik:RadTreeListView 
                ItemsSource="{Binding GetAccountsData.GetAccountLogParentAndChildData_Results, UpdateSourceTrigger=PropertyChanged}" 
                AutoGenerateColumns="False" 
                IsFilteringAllowed="False" 
                IsReadOnly="True"   
            >                                
                <telerik:RadTreeListView.ChildTableDefinitions>
                    <telerik:TreeListViewTableDefinition ItemsSource="{Binding Items}" />
                </telerik:RadTreeListView.ChildTableDefinitions>