This question is locked. New answers and comments are not allowed.
My code is similar to the FirstLook example with childhierarchy.
I just updated the binaries and i realised that the children now no longer gets the data.
in the Details tab, there's a textbox that's bound to ID.
This field is available in the grid, there's no change anywhere else.
Is DataContext="{Binding MasterRecord.Data}" replaced with something else?
thanks in advance.
jy
I just updated the binaries and i realised that the children now no longer gets the data.
in the Details tab, there's a textbox that's bound to ID.
This field is available in the grid, there's no change anywhere else.
Is DataContext="{Binding MasterRecord.Data}" replaced with something else?
thanks in advance.
jy
<grid:RadGridView.HierarchyChildTemplate>
<DataTemplate>
<StackPanel Background="#FF525252" Orientation="Horizontal">
<navigation:RadTabControl x:Name="TabControlIndicator" Style="{StaticResource RadTabControlStyle}" BorderBrush="#FFF6F6F6" BorderThickness="0 1 0 0" Margin="30,30,30,30" controls:StyleManager.Theme="Vista" SelectionChanged="TabControlIndicator_SelectionChanged">
<!-- Details Tab -->
<navigation:RadTabItem Header="Details" Tag="DetailsTab" DataContext="{Binding MasterRecord.Data}" Margin="20,0,0,0" Height="24" FontWeight="Bold" FontSize="11" Foreground="Black" >
<localControls:SubTableIndicator_Details x:Name="IndicatorDetails"/>
</navigation:RadTabItem>
