RadioButton in a DataGrid
From: news.microsoft.com (Saurabh@gtx.com)
Date: 09/27/02
- Next message: NeverStill: "Role-Based hierarchical model advice"
- Previous message: Ben Amada: "Re: form based authentication and free pages"
- Next in thread: Bipin [MVP]: "Re: RadioButton in a DataGrid"
- Reply: Bipin [MVP]: "Re: RadioButton in a DataGrid"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
From: "news.microsoft.com" <Saurabh@gtx.com> Date: Thu, 26 Sep 2002 16:57:23 -0700
Hi
I have been trying to put a radiobutton server control inside a datagrid .
but the radio buttons being generated on the webform are not mutually
exclusive.
here is the code:
<asp:datagrid id="datagridVendor" runat="server" Width="460px" Height="25px"
AutoGenerateColumns="False" AllowPaging="True" AllowSorting="True">
<Columns>
<asp:TemplateColumn SortExpression="VendorName" HeaderText="Vendor
Name">
<ItemTemplate>
<asp:RadioButton id="rb" Enabled=True Runat=server
GroupName="Grp1" ></asp:RadioButton>
</ItemTemplate>
</asp:TemplateColumn>
</Columns>
</asp:datagrid>
Now the reason why they are not mutaully exclusive at run time is that
ASP.NET changes the IDs of these radio buttons. Here is what i see when I do
a "View Source" in the browser.
<input id="datagridVendor__ctl2_rb" type="radio"
name="datagridVendor:_ctl2:Grp1" value="rb" />
<input id="datagridVendor__ctl3_rb" type="radio"
name="datagridVendor:_ctl3:Grp1" value="rb" />
Any idea why is this happening ???????
Thanks in advance.
Saurabh
- Next message: NeverStill: "Role-Based hierarchical model advice"
- Previous message: Ben Amada: "Re: form based authentication and free pages"
- Next in thread: Bipin [MVP]: "Re: RadioButton in a DataGrid"
- Reply: Bipin [MVP]: "Re: RadioButton in a DataGrid"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Relevant Pages
|