Radio Button problem
-
Hi Guys Using ASP.NET 2.0 and Ajax Toolkit I am developing an application In that application i am using a radio button in data list After Running its working fine But the problem is that if i checked that radio button then we can not unchecked that radio button so what will be the solution for that? please help me Thank in Advance
krishna veer singh
-
Hi Guys Using ASP.NET 2.0 and Ajax Toolkit I am developing an application In that application i am using a radio button in data list After Running its working fine But the problem is that if i checked that radio button then we can not unchecked that radio button so what will be the solution for that? please help me Thank in Advance
krishna veer singh
When you use radio button in GridView or DataList, then all the radio buttons will be selectable and not only one. Though you have given a GroupName for the radio buttons, it will not work in GridView and DataList. The reason is the GroupName will work if all the radio buttons in a group have the same 'Name' property. But there will be distinct 'Name' will be generated for all radio buttons in the DataList/GridView. Try the solution given in the following link: Adding a GridView Column of Radio Buttons[^]
-
When you use radio button in GridView or DataList, then all the radio buttons will be selectable and not only one. Though you have given a GroupName for the radio buttons, it will not work in GridView and DataList. The reason is the GroupName will work if all the radio buttons in a group have the same 'Name' property. But there will be distinct 'Name' will be generated for all radio buttons in the DataList/GridView. Try the solution given in the following link: Adding a GridView Column of Radio Buttons[^]
Ya i Know but i want many of them will be selected if i wants to uncheck radio button i am not able
krishna veer singh