This is a migrated thread and some comments may be shown as answers.

TreeListView Brush is broken when row height varies

1 Answer 106 Views
TreeListView
This is a migrated thread and some comments may be shown as answers.
Michael
Top achievements
Rank 1
Michael asked on 19 Jun 2014, 07:13 AM
Hi.
I've been playing around with the TreeListView, which I like very much.
However, I notice that when enabling the brushes, the lines are broken when the row height becomes bigger than default (for example, a cell has a lot of text so the row height doubles).

This is the code (and I've attached a screenshot) :

<Grid DataContext="{Binding Source={StaticResource SampleDataSource}}">
         <Grid.RowDefinitions>
            <RowDefinition Height="*"/>
        </Grid.RowDefinitions>
        
        <telerik:RadTreeListView AutoGenerateColumns="False"
        TreeLinesVisibility="Visible"
                                 ItemsSource="{Binding People}" Margin="10">
            <telerik:RadTreeListView.ChildTableDefinitions>
                <telerik:TreeListViewTableDefinition ItemsSource="{Binding Children}" />
            </telerik:RadTreeListView.ChildTableDefinitions>
            <telerik:RadTreeListView.Columns>
                <telerik:GridViewDataColumn DataMemberBinding="{Binding Name}" Width=".3*"
                                    Header="Name" />
                <telerik:GridViewDataColumn DataMemberBinding="{Binding SurName}" Width=".3*"
                                    Header="Surname" />
                <telerik:GridViewDataColumn DataMemberBinding="{Binding Address}"
                                    Header="Address" TextWrapping="Wrap" Width=".3*"/>
            </telerik:RadTreeListView.Columns>
        </telerik:RadTreeListView>
</Grid>

1 Answer, 1 is accepted

Sort by
0
Nick
Telerik team
answered on 20 Jun 2014, 08:02 AM
Hello Michael,

Thank you for reporting the problem. We will do our best to fix it as soon as possible. In the mean time, you can follow the progress in our FeedbackPortal



Regards,
Nik
Telerik
 
Check out Telerik Analytics, the service which allows developers to discover app usage patterns, analyze user data, log exceptions, solve problems and profile application performance at run time. Watch the videos and start improving your app based on facts, not hunches.
 
Tags
TreeListView
Asked by
Michael
Top achievements
Rank 1
Answers by
Nick
Telerik team
Share this question
or