This question is locked. New answers and comments are not allowed.
<ControlTemplate x:Key="GridViewGroupRowTemplate" TargetType="telerik:GridViewGroupRow"> <Grid x:Name="PART_GroupExpanderGrid"> <Grid.ColumnDefinitions> <ColumnDefinition Width="Auto"/> <ColumnDefinition Width="*"/> </Grid.ColumnDefinitions> <Grid.RowDefinitions> <RowDefinition x:Name="PART_HeaderRow" /> </Grid.RowDefinitions> <Border x:Name="ToggleButtonBorder" Background="{TemplateBinding Background}" Grid.Column="1" MinHeight="{TemplateBinding MinHeight}" BorderThickness="0,0,1,1" BorderBrush="Gray"> <Grid> <Grid.ColumnDefinitions> <ColumnDefinition Width="180"/> <ColumnDefinition Width="*"/> </Grid.ColumnDefinitions> <Border Grid.Column="0" BorderThickness="0,0,1,1" BorderBrush="{TemplateBinding BorderBrush}"> <Grid> <telerik:RadButton Margin="4,2,0,0" HorizontalAlignment="Left" VerticalAlignment="Top" Width="12" Height="12" Content="+" IsTabStop="False"/> <telerik:RadButton Margin="17,2,0,0" HorizontalAlignment="Left" VerticalAlignment="Top" Width="12" Height="12" Content="-" IsTabStop="False"/> <ContentControl x:Name="HeaderButton" telerik:SelectiveScrollingGrid.SelectiveScrollingOrientation="Vertical" Margin="36,2,0,0"> <ContentPresenter ContentTemplate="{TemplateBinding GroupHeaderTemplate}" Content="{TemplateBinding GroupViewModel}" Margin="0,0,10,0" VerticalAlignment="Center"/> </ContentControl> </Grid> </Border> <Border x:Name="Content" Grid.Column="1" Visibility="Visible"> <StackPanel> <telerik:GridViewVirtualizingPanel x:Name="PART_GridViewVirtualizingPanel"/> </StackPanel> </Border> </Grid> </Border> </Grid> </ControlTemplate>I've applied the above template to my RadGridView, in an attempt to move the GroupHeaderRow to the left of the rows its grouping as opposed to the side. All works well until the grid becomes larger than the target area (in a floating rad pane) and I get artifacts like those in the attached screenshots (the grey lines covering rows).
The Grouping works excellently, but I really need to change the layout - am I on the right path?