L
Leszek
Hello,
Is it possible to create "nested radio button lists" using VS.NET. I mean to
create something like that (the following code does not work):
<asp:RadioButtonList id="RadioButtonList1" runat="server">
<asp:ListItem Value="A">AAA</asp:ListItem>
<asp:ListItem Value="B">BBB</asp:ListItem>
<asp:ListItem Value="C">CCC</asp:ListItem>
<asp:RadioButtonList id="RadioButtonList2" runat="server">
<asp:ListItem Value="1">111</asp:ListItem>
<asp:ListItem Value="2">222</asp:ListItem>
</asp:RadioButtonList>
</asp:RadioButtonList>
Here the RadioButtonList2 list contains suboptions for the <asp:ListItem
Value="C">CCC</asp:ListItem> radio button. I need them to be displayed right
below the CCC radio button that's why I need to nest the lists.
Thanks,
Leszek Taratuta
Is it possible to create "nested radio button lists" using VS.NET. I mean to
create something like that (the following code does not work):
<asp:RadioButtonList id="RadioButtonList1" runat="server">
<asp:ListItem Value="A">AAA</asp:ListItem>
<asp:ListItem Value="B">BBB</asp:ListItem>
<asp:ListItem Value="C">CCC</asp:ListItem>
<asp:RadioButtonList id="RadioButtonList2" runat="server">
<asp:ListItem Value="1">111</asp:ListItem>
<asp:ListItem Value="2">222</asp:ListItem>
</asp:RadioButtonList>
</asp:RadioButtonList>
Here the RadioButtonList2 list contains suboptions for the <asp:ListItem
Value="C">CCC</asp:ListItem> radio button. I need them to be displayed right
below the CCC radio button that's why I need to nest the lists.
Thanks,
Leszek Taratuta