Radio Box in Grid View
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
How can i place a radio buttons in Grid View. I am displaying a # of options to user using a grid view & i want to ask user to select any one of them. aLi
-
How can i place a radio buttons in Grid View. I am displaying a # of options to user using a grid view & i want to ask user to select any one of them. aLi
+ You can use the TemplateField with the html input radio element which is not marked
runat="server"
. + You can implement your own RadioButtonField which basically inherits from theDataControlField
class, the custom field simply hide the details of the html radio element. You may find the sample code out there, try to have a good search.