Copy link to clipboard
Copied
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.
Copy link to clipboard
Copied
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'.
Copy link to clipboard
Copied
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'.
Copy link to clipboard
Copied
Thank you so much Nesa.

