Solved

How to get selected value from dropdown list in JavaScript

  • 27 July 2017
  • 5 replies
  • 280 views

Badge +2

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)");
}

icon

Best answer by prasadplvv 28 July 2017, 16:55

View original

5 replies

Userlevel 6
Badge +16

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

Badge +2

Yes it should me equal to the display Name . 

Badge +2

In alert it is Displaying 1

Badge +4

Is it a simple dropdown list or a lookup ?

Badge +2

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