I was wondering how we can create nested repeater control dynamically?
I want to display
Customers
Sales Orders
Quantity
in a nested repeater control.
Any help will be greatly appreciated.
Thanks
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
you can accomplish using this technique….
<asp:Repeater ID="rptOuter" runat="server" DataSourceID="odsOuter"
onitemdatabound="rptOuter_ItemDataBound">
<ItemTemplate>
<asp:Label ID="lblFirst" runat="server" Text='<%# Eval("first")%>'></asp:Label>
<asp:Repeater ID="rptInner" runat="server" DataSourceID="odsInner">
<ItemTemplate>
<asp:Label ID="lblSecond" runat="server" Text='<%# Eval("second")%>'></asp:Label>
<asp:Label ID="lblThird" runat="server" Text='<%# Eval("third")%>'></asp:Label>
</ItemTemplate>
</asp:Repeater>
</ItemTemplate>
</asp:Repeater>
Code Behind
protected void rptOuter_ItemDataBound(object sender, RepeaterItemEventArgs e)
{
if ((e.Item.ItemType == ListItemType.Item) || (e.Item.ItemType == ListItemType.AlternatingItem))
{
((Label)e.Item.FindControl("lblFirst")).Text = "New Text";
((Repeater)e.Item.FindControl("rptInner")).DataSource = "";
((Repeater)e.Item.FindControl("rptInner")).DataBind();//bind data to inner repeater..
}
}
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0