Hi. i have a telerik grid like below.
<telerik:RadGrid Skin="Windows7" ID="grdRubrikOgrencileri" EnableEmbeddedScripts="true"
runat="server" Width="84%" ShowStatusBar="true" Visible="true"
AutoGenerateColumns="False" style = "float:right;"
PageSize="1000" AllowSorting="True"
OnDataBound="grdRubrikOgrencileri_DataBound"
OnNeedDataSource="grdRubrikOgrencileri_NeedDataSource"
GridLines="None">
<PagerStyle Mode="NumericPages"></PagerStyle>
<MasterTableView Width="100%" DataKeyNames="DegTipIliskiID" ForeColor="Maroon" AllowMultiColumnSorting="True" HierarchyDefaultExpanded="true" CommandItemStyle-HorizontalAlign="Justify" FilterItemStyle-HorizontalAlign="Center">
<Columns>
<telerik:GridBoundColumn SortExpression="DegTipIliskiID" HeaderText="DegTipIliskiID"
Visible="false" DataField="DegTipIliskiID">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn SortExpression="DegerlendirmeTipiID" HeaderText="DegerlendirmeTipiID"
Visible="false" DataField="DegerlendirmeTipiID">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn SortExpression="DegerlendirmeTipi" HeaderText="DegerlendirmeTipi"
DataField="DegerlendirmeTipi">
</telerik:GridBoundColumn>
</Columns>
</MasterTableView>
</telerik:RadGrid>
Now, I want to add two detailstables inside to this grid as dynamically. How can I achieve this? Can someone give me an idea?
I added a photo about what i want to do. If you look at photo, there is a red bordered part. This part must load dynamically. This is what i try to do.
Thanks in avance.
<telerik:RadGrid Skin="Windows7" ID="grdRubrikOgrencileri" EnableEmbeddedScripts="true"
runat="server" Width="84%" ShowStatusBar="true" Visible="true"
AutoGenerateColumns="False" style = "float:right;"
PageSize="1000" AllowSorting="True"
OnDataBound="grdRubrikOgrencileri_DataBound"
OnNeedDataSource="grdRubrikOgrencileri_NeedDataSource"
GridLines="None">
<PagerStyle Mode="NumericPages"></PagerStyle>
<MasterTableView Width="100%" DataKeyNames="DegTipIliskiID" ForeColor="Maroon" AllowMultiColumnSorting="True" HierarchyDefaultExpanded="true" CommandItemStyle-HorizontalAlign="Justify" FilterItemStyle-HorizontalAlign="Center">
<Columns>
<telerik:GridBoundColumn SortExpression="DegTipIliskiID" HeaderText="DegTipIliskiID"
Visible="false" DataField="DegTipIliskiID">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn SortExpression="DegerlendirmeTipiID" HeaderText="DegerlendirmeTipiID"
Visible="false" DataField="DegerlendirmeTipiID">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn SortExpression="DegerlendirmeTipi" HeaderText="DegerlendirmeTipi"
DataField="DegerlendirmeTipi">
</telerik:GridBoundColumn>
</Columns>
</MasterTableView>
</telerik:RadGrid>
Now, I want to add two detailstables inside to this grid as dynamically. How can I achieve this? Can someone give me an idea?
I added a photo about what i want to do. If you look at photo, there is a red bordered part. This part must load dynamically. This is what i try to do.
Thanks in avance.
