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

ADDING TEXT TO INPUT

Explorer ,
Dec 09, 2023 Dec 09, 2023

Copy link to clipboard

Copied

Good Day, 

 

          I am looking to add the word "input" in a separate text box. Example, if I put Boss in the initial text box, the other text box would display "Boss Input". 

 

My initial box is C.O.C. ROSTER.0

The other box is C.O.C. ROSTER 1ST

 

I thought I new what was was doing as always and um yeah didnt work out for me. Thank you for your help in advance. 

TOPICS
PDF , PDF forms

Views

339

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 , Dec 10, 2023 Dec 10, 2023

As validation script of the first field, use this:

var f2 = this.getField("C.O.C. ROSTER 1ST");
f2.value = event.value == "" ? "" : event.value + " Input";

Votes

Translate

Translate
Community Expert ,
Dec 10, 2023 Dec 10, 2023

Copy link to clipboard

Copied

As validation script of the first field, use this:

var f2 = this.getField("C.O.C. ROSTER 1ST");
f2.value = event.value == "" ? "" : event.value + " Input";

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
Explorer ,
Dec 10, 2023 Dec 10, 2023

Copy link to clipboard

Copied

LATEST

Thank you so much. 

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