Articles

Problem in selecting Radio Button inside Repeater Control

by Sachin Joshi SEO/ SMO Consult
selector-button.png


Incase we are using RadioButton inside a Repeater, one common problem which we face is that we are not able to select single RadioButton, i.e. If we select one RadioButton, and then click on the other the other also gets selected without unselecting the first one. Even the GroupName property of the RadioButton dosen't works for this.
 The solution I got is: 1. Set the AutoPostBack property of the RadioButton to "true".
2.
Make OnCheckedChanged event for the RadioButton. Example:
  1. <asp:RadioButton ID="rbtnSelectEmp" runat="server" AutoPostBack="true"
  2. OnCheckedChanged="rbtnSelectEmp_OnCheckedChanged" />
3. Inside OnCheckedChanged event write the following code:
  1. protected void rbtnSelectEmp_OnCheckedChanged(object sender, EventArgs e)
  2. {
  3. foreach (RepeaterItem item in rptEmployee.Items)
  4. {
  5. RadioButton rbtn = (RadioButton)item.FindControl("rbtnSelectEmp");
  6. ...
Read full blog at our highly specific C, android,iphone, Javascript,HTML, PHP developer forum about the topic described above Problem in selecting Radio Button inside Repeater Control . You can also learn much more about different programming technologies and can enhance your tech skills.

Sponsor Ads


About Sachin Joshi Innovator   SEO/ SMO Consult

37 connections, 0 recommendations, 89 honor points.
Joined APSense since, May 14th, 2015, From Dehradun, India.

Created on Dec 31st 1969 18:00. Viewed 0 times.

Comments

No comment, be the first to comment.
Please sign in before you comment.