This question is locked. New answers and comments are not allowed.
Hi,
I have three data sources
Table A (Test_type, Test_Num)
Table B (Well_test_type, well_test_Num)
Table C (Source, Pressure_obs_no)
The relationship between A and B is from A.(Test_type+Test_num) => B.(Well_Test_type+well_test_num)
The relationship between B and C is from B.(Source + Pressure_obs_no) => C,(Source+Pressure_obs_no)
How does one show all the three tables in a hierarchy. In the relationship listed above, the addition sign determines the uniqueness.
Thanks
--------------------------
<telerik:RadGridView x:Name="A" ActionOnLostFocus="None" IsBusy="True" IsReadOnly="True" Margin="10,0,10,0" ShowColumnFooters="True">
<telerik:RadGridView.HierarchyChildTemplate>
<DataTemplate>
<telerik:RadGridView x:Name="B" ActionOnLostFocus="None" IsBusy="True" Margin="10,0,10,0" ShowColumnFooters="True">
<telerik:RadGridView.HierarchyChildTemplate>
<DataTemplate>
<telerik:RadGridView x:Name="C" ActionOnLostFocus="None" IsBusy="True" Margin="10,0,10,0" ShowColumnFooters="True"/>
</DataTemplate>
</telerik:RadGridView.HierarchyChildTemplate>
</telerik:RadGridView>
</DataTemplate>
</telerik:RadGridView.HierarchyChildTemplate>
</telerik:RadGridView>
I have three data sources
Table A (Test_type, Test_Num)
Table B (Well_test_type, well_test_Num)
Table C (Source, Pressure_obs_no)
The relationship between A and B is from A.(Test_type+Test_num) => B.(Well_Test_type+well_test_num)
The relationship between B and C is from B.(Source + Pressure_obs_no) => C,(Source+Pressure_obs_no)
How does one show all the three tables in a hierarchy. In the relationship listed above, the addition sign determines the uniqueness.
Thanks
--------------------------
<telerik:RadGridView x:Name="A" ActionOnLostFocus="None" IsBusy="True" IsReadOnly="True" Margin="10,0,10,0" ShowColumnFooters="True">
<telerik:RadGridView.HierarchyChildTemplate>
<DataTemplate>
<telerik:RadGridView x:Name="B" ActionOnLostFocus="None" IsBusy="True" Margin="10,0,10,0" ShowColumnFooters="True">
<telerik:RadGridView.HierarchyChildTemplate>
<DataTemplate>
<telerik:RadGridView x:Name="C" ActionOnLostFocus="None" IsBusy="True" Margin="10,0,10,0" ShowColumnFooters="True"/>
</DataTemplate>
</telerik:RadGridView.HierarchyChildTemplate>
</telerik:RadGridView>
</DataTemplate>
</telerik:RadGridView.HierarchyChildTemplate>
</telerik:RadGridView>
