or
							
<telerik:RadGridView.Columns>or its equivalent section within the ChildTableDefinitions. Surely this must be possible, as these child rows in my case, anyway, contain merely a subset of the columns in the main RadGridView control.
<telerik:RadGridView.ChildTableDefinitions>     <telerik:GridViewTableDefinition>         <telerik:GridViewTableDefinition.Relation>             <telerik:TableRelation IsSelfReference="True">                 <telerik:TableRelation.FieldNames>                     <telerik:FieldDescriptorNamePair                 ParentFieldDescriptorName="BankStatementTranID"                 ChildFieldDescriptorName="ParentStatementTranID"/>                 </telerik:TableRelation.FieldNames>             </telerik:TableRelation>         </telerik:GridViewTableDefinition.Relation>           <telerik:RadGridView.Columns>          ...My XAML column code here...         </telerik:RadGridView.Columns>     </telerik:GridViewTableDefinition> </telerik:RadGridView.ChildTableDefinitions>
<StackPanel VerticalAlignment="Top">                                        <telerikNavigation:RadTreeView HorizontalContentAlignment="Stretch" x:Name="uiActionersList" IsDragDropEnabled="True" DragEnded="uiActionersList_DragEnded"                                                HorizontalAlignment="Stretch" SelectionMode="Multiple" ScrollViewer.HorizontalScrollBarVisibility="Hidden" dragDrop:RadDragAndDropManager.AllowDrop="True"                                                                               IsDragPreviewEnabled="True"  IsDragTooltipEnabled="True" SelectionChanged="uiActionersList_SelectionChanged"                                                ItemsSource="{Binding ActionerModelViewCollection, NotifyOnSourceUpdated=True, NotifyOnTargetUpdated=True,Mode=TwoWay}" Margin="0,0,-5,0" >                                            <telerikNavigation:RadTreeView.ItemTemplate>                                                <DataTemplate>                                                    <pmControls:ActionerControl x:Name="ItemsHost" />                                                </DataTemplate>                                            </telerikNavigation:RadTreeView.ItemTemplate>                                        </telerikNavigation:RadTreeView>                                    </StackPanel>RadRichTextBox tb = new RadRichTextBox(); tb.Document = CreateCodeBehindDocumentWithTable(); // <- from demo project, inserts some stuff tb.PrintPreview();
<telerikNavigation:RadTreeView HorizontalContentAlignment="Stretch" x:Name="uiActionersList" IsDragDropEnabled="True" DragEnded="uiActionersList_DragEnded"                                                HorizontalAlignment="Stretch" SelectionMode="Multiple" ScrollViewer.HorizontalScrollBarVisibility="Hidden" dragDrop:RadDragAndDropManager.AllowDrop="True"                                                                               IsDragPreviewEnabled="True"  IsDragTooltipEnabled="True" SelectionChanged="uiActionersList_SelectionChanged"                                                ItemsSource="{Binding ActionerModelViewCollection, NotifyOnSourceUpdated=True, NotifyOnTargetUpdated=True,Mode=TwoWay}" Margin="0,0,-5,0" >                                            <telerikNavigation:RadTreeView.ItemTemplate>                                                <DataTemplate>                                                    <pmControls:ActionerControl x:Name="ItemsHost" />                                                </DataTemplate>                                            </telerikNavigation:RadTreeView.ItemTemplate>                                        </telerikNavigation:RadTreeView><Grid Background="White">        <StackPanel>            <Grid>                <StackPanel Orientation="Horizontal" HorizontalAlignment="Left" Height="25" Margin="0">                <telerikControls:RadButton Name="dragHandle" Height="24" Width="11" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="0,0,3,0">                    <telerikControls:RadButton.Content>                        <Grid>                            <Line X1="0" Y1="0" X2="3" Y2="0" Stroke="Black" StrokeThickness="1"></Line>                                <Line X1="0" Y1="5" X2="3" Y2="5" Stroke="Black" StrokeThickness="1"></Line>                                <Line X1="0" Y1="10" X2="3" Y2="10" Stroke="Black" StrokeThickness="1"></Line>                        </Grid>                    </telerikControls:RadButton.Content>                </telerikControls:RadButton>                    <Image Width="25" Height="25" Source="{Binding SelectedActioner, Converter={StaticResource ReturnImageBasedOnTypeConverter}, Mode=OneWay, UpdateSourceTrigger=PropertyChanged, NotifyOnTargetUpdated=True}">                                             </Image>                    <DockPanel Width="300" LastChildFill="True" Margin="3,1,0,0">                        <StackPanel DockPanel.Dock="Right" Orientation="Horizontal" Name="uiCreationButtons" Visibility="{Binding HasGotThisJobOrGroup, Converter={StaticResource CollapsedOnTrueConverter}}">                            <telerikControls:RadButton Content="New Group" Width="70" Margin="0,0,3,0" Padding="0" HorizontalAlignment="Right" Click="ActionerGroupButton_Click" />                            <telerikControls:RadButton Content="New Job" Width="70" Margin="0" Padding="0" HorizontalAlignment="Right" Click="ActionerJobButton_Click"/>                        </StackPanel>                        <telerikControls:RadComboBox Name="uiActionerNamesComboBox" IsEditable="True"                        IsReadOnly="False" Margin="0,0,3,0" ItemsSource="{Binding AllAgilityJobDocs}" SelectedValue="{Binding SelectedActioner, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, NotifyOnTargetUpdated=True}"                        KeyUp="uiActionerNamesComboBox_KeyUp"  telerikControls:TextSearch.TextPath="Title" HorizontalAlignment="Stretch" EmptyText="{Binding ThisActioner.Position, Converter={StaticResource EmptyActionerTextConverter}}">                            <telerikControls:RadComboBox.FontWeight>                                <MultiBinding Converter="{StaticResource ActionerBoldTextMultiBindingConverter}" Mode="OneWay">                                    <Binding Path="SelectedActioner"/>                                    <Binding Path="NewAgilityJobDocs"/>                                </MultiBinding>                            </telerikControls:RadComboBox.FontWeight>                            <telerikControls:RadComboBox.ItemTemplate>                                <DataTemplate>                                    <StackPanel Orientation="Horizontal">                                        <Image Height="16" Width="16">                                            <Image.Style>                                                <Style TargetType="Image">                                                    <Style.Triggers>                                                        <DataTrigger  Binding="{Binding ItemType}" Value="Job" >                                                            <Setter Property="Source" Value="{StaticResource JobDocImage}"/>                                                        </DataTrigger>                                                        <DataTrigger Binding="{Binding ItemType}" Value="Group" >                                                            <Setter Property="Source"  Value="{StaticResource GroupImage}"/>                                                        </DataTrigger>                                                    </Style.Triggers>                                                </Style>                                            </Image.Style>                                        </Image>                                        <TextBlock Text="{Binding Title}" FontWeight="Normal" VerticalAlignment="Center" Margin="5,0,0,0"/>                                    </StackPanel>                                </DataTemplate>                            </telerikControls:RadComboBox.ItemTemplate>                        </telerikControls:RadComboBox>                    </DockPanel>                    <Canvas Margin="4,0,0,0" Height="23" Width="23" Visibility="{Binding ActionerCount, Converter={StaticResource HiddenIfActionerDoesntExistConverter}, ConverterParameter=11}">                        <Image Source="{StaticResource PMActionerRectangle}" Height="23" Width="23" Panel.ZIndex="100"/>                        <Rectangle Height="21" Width="21" Margin="1,1,0,0" RadiusX="3" RadiusY="3" Panel.ZIndex="99">                            <Rectangle.Fill>                                <SolidColorBrush Color="{Binding SelectedColor, UpdateSourceTrigger=PropertyChanged,  Converter={StaticResource ColourConverter}}" />                            </Rectangle.Fill>                        </Rectangle>                    </Canvas>                </StackPanel>            </Grid>        </StackPanel>    </Grid>