Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

asp.net radio button grouping

I am currently having an issue with radio buttons and grouping. I have an asp radio button within a repeater control. I have the group name attribute set to "Customer". When the page loads, the radio buttons are not grouped. Instead of the id fields being set to the group name, it is setting the value fields of the radio buttons. I know that I have tried setting radio buttons up outside of a repeater control and have had the same issue. What is going on here?

aspx

<asp:Repeater ID="repCustomers" runat="server">     <HeaderTemplate>         <table class="tableDefault" cellpadding="0" cellspacing="0" border="0" style="width: 383px; border: 0px !important">             <tr>                 <th>&nbsp;</th>                 <th>Cust. No.</th>                 <th>Cust. Name</th>             </tr>     </HeaderTemplate>     <ItemTemplate>             <tr>                 <td>                     <asp:RadioButton ID="radCustomer" GroupName="Customer" runat="server" ValidationGroup="Customer" ToolTip='<%#Eval("CustomerNumber") %>' />                 </td>                 <td><%#Eval("CustomerNumber")%></td>                 <td><%#Eval("Name") %></td>             </tr>     </ItemTemplate>     <FooterTemplate>         </table>     </FooterTemplate> </asp:Repeater> 

output html

<table class="tableDefault" cellpadding="0" cellspacing="0" border="0" style="width: 383px; border: 0px !important">     <tr>         <th>&nbsp;</th>         <th>Cust. No.</th>         <th>Cust. Name</th>     </tr>      <tr>         <td>             <span title="111111"><input id="ctl00_PrimaryContent_repCustomers_ctl01_radCustomer" type="radio" name="ctl00$PrimaryContent$repCustomers$ctl01$Customer" value="radCustomer" /></span>         </td>         <td>111111</td>         <td>Jeremy's Test</td>     </tr>      <tr>         <td>             <span title="222222"><input id="ctl00_PrimaryContent_repCustomers_ctl02_radCustomer" type="radio" name="ctl00$PrimaryContent$repCustomers$ctl02$Customer" value="radCustomer" /></span>         </td>         <td>222222</td>         <td>My Test</td>     </tr>      <tr>         <td>             <span title="333333"><input id="ctl00_PrimaryContent_repCustomers_ctl03_radCustomer" type="radio" name="ctl00$PrimaryContent$repCustomers$ctl03$Customer" value="radCustomer" /></span>         </td>         <td>333333</td>         <td>Jim Bob's BBQ</td>     </tr>      <tr>         <td>             <span title="444444"><input id="ctl00_PrimaryContent_repCustomers_ctl04_radCustomer" type="radio" name="ctl00$PrimaryContent$repCustomers$ctl04$Customer" value="radCustomer" /></span>         </td>         <td>444444</td>         <td>New Hope Hamburgers</td>     </tr>      <tr>         <td>             <span title="555555"><input id="ctl00_PrimaryContent_repCustomers_ctl05_radCustomer" type="radio" name="ctl00$PrimaryContent$repCustomers$ctl05$Customer" value="radCustomer" /></span>         </td>         <td>555555</td>         <td>Pied Piper Pizza</td>     </tr>      <tr>         <td>             <span title="666666"><input id="ctl00_PrimaryContent_repCustomers_ctl06_radCustomer" type="radio" name="ctl00$PrimaryContent$repCustomers$ctl06$Customer" value="radCustomer" /></span>         </td>         <td>666666</td>         <td>Sandy's Subs</td>     </tr>      <tr>         <td>             <span title="777777"><input id="ctl00_PrimaryContent_repCustomers_ctl07_radCustomer" type="radio" name="ctl00$PrimaryContent$repCustomers$ctl07$Customer" value="radCustomer" /></span>         </td>         <td>777777</td>         <td>Leonard's Lambchops</td>     </tr>      <tr>         <td>             <span title="888888"><input id="ctl00_PrimaryContent_repCustomers_ctl08_radCustomer" type="radio" name="ctl00$PrimaryContent$repCustomers$ctl08$Customer" value="radCustomer" /></span>         </td>         <td>888888</td>         <td>Dave's Diamond Deli</td>     </tr>      <tr>         <td>             <span title="999999"><input id="ctl00_PrimaryContent_repCustomers_ctl09_radCustomer" type="radio" name="ctl00$PrimaryContent$repCustomers$ctl09$Customer" value="radCustomer" /></span>         </td>         <td>999999</td>         <td>Ernie's Eatery</td>     </tr>  </table> 
like image 950
fizch Avatar asked Aug 26 '09 14:08

fizch


People also ask

How do I group radio buttons in asp net?

Use the GroupName property to specify a grouping of radio buttons to create a mutually exclusive set of controls. You can use the GroupName property when only one selection is possible from a list of available options. When this property is set, only one RadioButton in the specified group can be selected at a time.

How do you group radio buttons together?

You group radio buttons by drawing them inside a container such as a Panel control, a GroupBox control, or a form. All radio buttons that are added directly to a form become one group. To add separate groups, you must place them inside panels or group boxes.

What is group name in radio button?

As far as I know, radiobuttons in HTML do not have group names. Their HTML "name" attribute is the group name.

How do I group radio buttons in HTML?

Note: The radio group must have share the same name (the value of the name attribute) to be treated as a group. Once the radio group is created, selecting any radio button in that group automatically deselects any other selected radio button in the same group.


1 Answers

I finally got around this by creating a plain radio button and setting the value using an server-side eval.

<input type="radio" name="radCustomer" value='<%#Eval("CustomerNumber") %>' /> 

Now when the application performs a postback, I check for the value of Request.Form["radCustomer"]. This works flawlessly.

like image 132
fizch Avatar answered Sep 28 '22 05:09

fizch