Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8091227
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T19:59:49+00:00 2026-06-05T19:59:49+00:00

I am trying to change the checked attribute of dynamically created html radio button

  • 0

I am trying to change the checked attribute of dynamically created html radio button in asp.net using jquery. I tried different methods but I am not able to change the attribute.

My aspx page and code behind file is as follows,

    <%@ Page Title="" Language="C#" MasterPageFile="~/FormMaster.master" AutoEventWireup="true"
    CodeFile="ArabiaHRLetterSurveyForm.aspx.cs" Inherits="HRLetter_Arabia_ArabiaHRLetterSurveyForm" %>

<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
    <div class="latest" style="width: 98%; margin-removed 10px; margin-removed 10px">
        <span class="corner-left"><span class="corner-right">
            <div class="actions">
                <a href="#" class="status" id="lnkHistory" style="color: #fff">History</a></div>
            HR Letter Survey Form </span></span>
    </div>
    <div style="width: 98%; margin-removed 10px; margin-removed 10px;">
        <div>
            <table cellpadding="0" cellspacing="0" width="100%" class="tableClass">
                <tr class="trClass" align="right">
                    <th class="full" colspan="5">
                        Header
                    </th>
                </tr>
                <tr class="trClass" style="width: 100%">
                    <td class="first" style="width: 20%">
                        Request No
                    </td>
                    <td class="last" style="width: 80%">
                        <a href="#" class="status" id="lnkRequestNo" style="color: Blue" target="_blank">
                            <%=Request["requestid"]%></a>
                    </td>
                </tr>
            </table>
        </div>
    </div>
    <div id="div_survey"  runat="server" style="width: 98%; margin-left: 10px; margin-right: 10px;">
    </div>
    <div>
        <table align="center">
            <tr>
                <td class="innerTd">
                    <a href="#" id="btnSubmit"  runat="server" class="button-small"  önserverclick="btnSubmit_Click">
                        <span class="corner-left-small"><span class="corner-right-small">Submit</span></span></a>
                </td>
            </tr>
        </table>
    </div>
    <asp:HiddenField ID="hUserIdEncrypted" runat="server" />
    <asp:HiddenField ID="hInitiatorUserId" runat="server" />
    <asp:HiddenField ID="hSurveyId" runat="server" />
    <script type="text/javascript">

        $("#lnkRequestNo").attr("href", "ArabiaHRLetterRequest.aspx?requestid=" + <%=Request["requestid"]%> +"&userId= " +  $("#<%=hUserIdEncrypted.ClientID %>").val());

        $("#lnkHistory").fancybox({
            'width': 700,
            'height': 400,
            'autoScale': true,
            'transitionIn': 'none',
            'transitionOut': 'none',
            'type': 'iframe'
        });

        $("#lnkHistory").attr("href", "ArabiaHRLetterSurveyFormHistory.aspx?surveyid=" + $("#<%=hSurveyId.ClientID %>").val());

        $("#<%=btnSubmit.ClientID %>").click(function(ev) {
            ev.preventDefault();
            var id;
            var selected;
            $("#<%=div_survey.ClientID %> tr:not(:has(th))").each(function() {
                $(this).find("td").each(function() {
                    var o = $(this);
                    var firstCol = o.parent().children().first();
                    id = firstCol.text();
                    selected = "N/A";
                    firstCol.next().next().find("input").each(function() {
                        if($(this).is("checked")) {
                            if($(this).val() == "YES")
                                selected = "YES";
                            else if($(this).val() == "NO")
                                selected = "NO";
                            else if($(this).val() == "N/A")
                                selected = "NA";
                        }
                    });
                    firstCol.next().next().find("textarea").each(function() {
                        selected = "TextArea";
                    });
                });
                alert(id);
                alert(selected);
            });
        });

        $("input").each(function() {
            $(this).click(function(ev) {
                alert($(this).val());
                if($(this).val() == "YES")
                {
                $("input[value='YES']").attr('checked', true);
                $("input[value='NO']").attr('checked', false);
                $("input[value='N/A']").attr('checked', false);
                }
                else if($(this).val() == "NO")
                {
                $("input[value='YES']").attr('checked', false);
                $("input[value='NO']").attr('checked', true);
                $("input[value='N/A']").attr('checked', false);
                }
                else if($(this).val() == "N/A")
                {
                $("input[value='YES']").attr('checked', false);
                $("input[value='NO']").attr('checked', false);
                $("input[value='N/A']").attr('checked', true);
                }
                //$('#Yes').attr("checked",false).checkboxradio("refresh");
                //$("input[type='radio']").attr("checked",true).checkboxradio("refresh");
                //$('input[name="yes_no_na0"]').attr('checked', false);
                //$(this).next().attr('checked', false);
                //$(this).next().next().attr('checked', false);

            });
        });

    </script>
</asp:Content>

My code behind file is as follows,

    using System;
using System.Data;
using System.Data.SqlClient;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using GWC.ToolKits;

using System.Data.Linq;
using System.Linq;
using System.Text;

using System.Windows;

public partial class HRLetter_Arabia_ArabiaHRLetterSurveyForm : System.Web.UI.Page
{

    protected void Page_PreInit(object sender, EventArgs e)
    {
    }

    protected void Page_Init(object sender, EventArgs e)
    {
    }

    protected void Page_Load(object sender, EventArgs e)
    {
        if (!Page.IsPostBack)
        {
            BindQuestions();
            hInitiatorUserId.Value = EncryptDecrypt.EncryptDecrypt.GetDecryptedData(Request["userId"]);
            hUserIdEncrypted.Value = Request["userId"];
            var m1 = Database.GetSurveyId(Request["requestId"]);
            hSurveyId.Value = m1.survey_id.ToString();

            var m = Database.GetSurveyId(Request["requestid"]);            
        }
    }

    private void BindQuestions()
    {
        StringBuilder surveytable = new StringBuilder();
        var m = Database.GetQuestions();

        if (m.Count > 0)
        {
            surveytable.Append("<table cellpadding='0' cellspacing='0' width='100%' class='tableClass'>");
            surveytable.Append("<tr class='trClass' align='right'>");
            surveytable.Append("<th class='full'>Id</th><th class='full'>Questions</th><th class='full'>Answers</th>");
            surveytable.Append("</tr>");
            if (m.Count > 0)
            {
                for (int i = 0; i < m.Count; i++)
                {
                    surveytable.Append("<tr class='trClass' style='width:100%'>");
                    surveytable.Append("<td class='first' style='width:5%'>" + m[i].question_id + "</td>");
                    surveytable.Append("<td class='first' style='width:60%'>" + m[i].question_description + " </td>");
                    if (m[i].question_type_id == 1)
                    {
                        surveytable.Append("<td class='last' style='width:35%'>");
                        surveytable.Append("<input id=\"rdoYes" + i + "\" name=\"yes_no_na" + i + "\" value=\"YES\" checked=\"false\" type=\"radio\">YES</input>");
                        surveytable.Append("<input id=\"rdoNo" + i + "\" name=\"yes_no_na" + i + "\" value=\"NO\" checked=\"false\"  type=\"radio\">NO</input>");
                        surveytable.Append("<input id=\"rdoNa" + i + "\" name=\"yes_no_na" + i + "\" value=\"N/A\" checked=\"true\"  type=\"radio\">N/A</input>");
                        surveytable.Append("</td>");
                    }
                    else
                    {
                        surveytable.Append("<td class='last' style='width:35%'>");
                        surveytable.Append("<Textarea id=\"txtComment" + i + "\" type=\"text\" runat=\"server\" style='width:98%; height:100px'></Textarea>");
                        surveytable.Append("</td>");
                    }
                    surveytable.Append("</tr>");
                }
            }
            surveytable.Append("</table>");
            div_survey.InnerHtml = surveytable.ToString();
        }
        else
        {
        }
    }

    private void SendNotificationAll(string userId, string subject, string body, string cc, string bcc)
    {
        try
        {
            string approvalEmail;
            approvalEmail = EmployeeData.GetEmployeeEmailByUserId(userId);
            MailHelper mailHelper = new MailHelper();
            Utilities util = new Utilities();
            mailHelper.SendMailMessage(util.GetValueFromConfigFile("SupportEmail"), approvalEmail, bcc, cc, subject, body);
        }
        catch (Exception exp)
        {
            LogManager logHelper = new LogManager(Request.PhysicalApplicationPath.Trim(), "HR Letter Request");
            logHelper.LogError("[SendApproverNotification - ]" + exp.Message);
        }
    }

    private void AlertMessage(string message)
    {
        string strScript;
        strScript = "<script language=javascript>alert('" + message + "');</script>";
        Page.RegisterClientScriptBlock("key", strScript);
    }

    protected void btnSubmit_Click(object sender, EventArgs e)
    {
        DateTime datetime1, datetime2;
        datetime1 = DateTime.Now;
        datetime2 = datetime1.AddSeconds(1);

        string request_no = Request["requestid"];

        var m = Database.GetSurveyId(request_no);
        string survey_id = m.survey_id.ToString();        

        Database.UpdateHRLetterSurveyMasterData(request_no, "2");

        Database.RegisterHRLetterSurveyHistory(survey_id, hInitiatorUserId.Value, datetime1.ToString(), "C", datetime2.ToString(), "Survey Completed");

        string peoplelinkUserId = GeneralData.GetCountryPeoplelink("1");

        Database.RegisterHRLetterHistory(request_no, peoplelinkUserId, datetime1.ToString(), "E", datetime2.ToString(), "Survey Completed");

        string messageid;
        messageid = GeneralData.InsertMessage(request_no, peoplelinkUserId, "Survey Request[" + request_no + "]", "inbox", "0", "0", "HRLetter", DateTime.Now.ToString(), "1").ToString();
        GeneralData.InsertMessageHistory(messageid, "inbox", DateTime.Now.ToString());

        Utilities util = new Utilities();

        SendNotificationAll(peoplelinkUserId, "Survey Request[" + request_no + "]", "<span style=\"font-family: Arial; font-size:12px\">Dear PeopleLink, <br /><br />Survey Request is completed.<br /><br />Click the link below for more details:<a href='http://" + util.GetValueFromConfigFile("ServerIPAll").ToString() + "/ArabiaHRLetterSurveyForm.aspx?requestid=" + request_no + "&surveyid=" + survey_id + "<br /><br />Thank you<br/>", "", "");

        AlertMessage("Survey Request Completed");

        Response.Redirect(Page.ResolveUrl("~/HRLetter\\Arabia\\ArabiaHRLetterSurveyForm.aspx?userid=" + hUserIdEncrypted.Value + "&requestid=" + request_no));

    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T19:59:50+00:00Added an answer on June 5, 2026 at 7:59 pm

    I got the solution myself. I need to add a colon before the attribute i.e :checked in attr function.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Just trying to change the value of an input using jQuery. Seems to work,
I'm trying to change the css of the following label using JQuery but I
I am trying to change the text on a radio button once it's been
I am trying to animate a change in backgroundColor using jQuery on mouseover. I
I am trying to use Jquery UI button plugin for my radio button group.
I am trying to change the NAME attribute of a DIV for the content
I'm trying to determine when any of a set of named input/select/radio/checked/hidden fields in
The code I'm using is supposed to change the 'action' attribute for a form
I am trying to figure out why my page doesn't fire the radio button
I'm trying to write a jQuery function that changes the subtotal when a radio

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.