I have a Gridview with a Radiobutton Itemtemplate. I want to group the entire column and only one Radiobutton should be chosen.
But I don’t want to do a postback to check them in server side. Is it possible to done with javascript ?

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Either use HTML radio button with
nameproperty to group all radio buttons in GridView’sItemTemplate:OR
If you don’t want to use HTML radio buttons then you need to handle the
checkedproperty for radio buttons yourself by using javascript/jQuery as described here.