Skip to main content
Participating Frequently
February 19, 2023
Answered

Populate same text from dropdown list

  • February 19, 2023
  • 1 reply
  • 1521 views

Hello,

 

Is it possible for me to replicate the value from the drop-down list into different text fields as well? I have included an attachment. I included a drop-down list for schools that I needed to repeat on the lower text fields 3 and 4.

Thank you for your help,

Regards.

 

 

 

This topic has been closed for replies.
Correct answer Nesa Nurani

You can use this as 'validate' script of dropdown field:

this.getField("Text3").value = event.value;
this.getField("Text4").value = event.value;

If you don't want to click outside dropdown field to show result then in dropdown field properties, under 'Options' tab, check 'Commit selected value immediately'.

1 reply

Nesa Nurani
Nesa NuraniCorrect answer
Community Expert
February 19, 2023

You can use this as 'validate' script of dropdown field:

this.getField("Text3").value = event.value;
this.getField("Text4").value = event.value;

If you don't want to click outside dropdown field to show result then in dropdown field properties, under 'Options' tab, check 'Commit selected value immediately'.

Participating Frequently
February 19, 2023

Thank you so much Nesa.