Skip to main content

I have a dropdown list Name Approver (APN) need to validate the selected Approver is equal to current user name on a button click if true need to set value in Radio button(Yes/No) to No 

 

Java script code i am using as below

 

NWF$('#'+ApID).val(); is returning 1 need to display the selected value. 

 

if(NWF$('#' + APN).val()=="Current User (Display Name)")
{

alert(NWF$('#'+ApID).val());
alert("Current User (Display Name)");
}

What do you get on NWF$('#' + APN).val() ?


Yes it should me equal to the display Name . 


In alert it is Displaying 1


Is it a simple dropdown list or a lookup ?


Thank for the follow up i got the answer. NWF$('#' + APN).find("option:selected").text();

Can you please help to Check radio button based on a value.

Tried the below code but it was used to clear the checked value in the radio button.

NWF$('#' + txtElection).find("input:checked").attr('checked',false);


Reply