• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Radio Button to trigger a text field

Community Beginner ,
Jan 31, 2023 Jan 31, 2023

Copy link to clipboard

Copied

Hello all,

 

I am having trouble with the following code. I entered it in the Document JavaScripts. The goal is when radio button "5k" is selected the text box (TotalLDD) fills with 5000. When radio button "100" is selected the text box (TotalLDD) is filled with "Enter Amount" and the user can enter an amount. Please help! So close to finishing this form!

 

var selectedValue = this.getField("LDD").value;

 

if (selectedValue === "5k") {
this.getField("TotalLDD").value = "5000";
} else if (selectedValue === "100") {
this.getField("TotalLDD").value = "Enter Amount";
}

 

Any insight is much appreciated.

 

TOPICS
JavaScript

Views

531

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Jan 31, 2023 Jan 31, 2023

Why did you place it there? Move it to the Mouse Up event of the radio-button fields, and change the first line to:

var selectedValue = event.target.value;

Votes

Translate

Translate
Community Expert ,
Jan 31, 2023 Jan 31, 2023

Copy link to clipboard

Copied

Why did you place it there? Move it to the Mouse Up event of the radio-button fields, and change the first line to:

var selectedValue = event.target.value;

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Feb 01, 2023 Feb 01, 2023

Copy link to clipboard

Copied

LATEST

Thank you try67. Made my day!

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines