I am using a nester repeater to dynamically build a list of radio buttons in a table:
<ItemTemplate>
<tr>
<td>
<asp:Label ID="lblAccID" runat="server" Text='<%# Eval("id") %>'></asp:Label>
</td>
<td>
<asp:Label ID="lblName" runat="server" Text='<%# Eval("name") %>'></asp:Label>
</td>
<td>
<%-- POPULATE CONDITION RADIO BUTTONS --%>
<asp:Repeater ID="rpConditionRadioButtons" runat="server">
<ItemTemplate>
<td>
<asp:RadioButton ID="rbCondition" GroupName="gCondition" Text="" runat="server" />
</td>
</ItemTemplate>
</asp:Repeater>
</td>
</tr>
</ItemTemplate>
But I can't figure out how to group them together. (Because the table is built on the fly I don't think I can use a radio button list.)
I have tried using the GroupName attribute, and setting the ClientIDMode to Static, but this didn't help.