Copy link to clipboard
Copied
Hello all good people.
Please, give me an advice how to do this:
If I chose one item from Drop Down Field some my text shows in another Text field. I have more item and evere item equals different text.
Best regards and have a nice day.
As the custom validation script of the drop-down field enter something like this:
if (event.value=="Option A") this.getField("Text1").value = "Text for Option A";
else if (event.value=="Option B") this.getField("Text1").value = "Text for Option B";
else if (event.value=="Option C") this.getField("Text1").value = "Text for Option C";
etc.
Copy link to clipboard
Copied
As the custom validation script of the drop-down field enter something like this:
if (event.value=="Option A") this.getField("Text1").value = "Text for Option A";
else if (event.value=="Option B") this.getField("Text1").value = "Text for Option B";
else if (event.value=="Option C") this.getField("Text1").value = "Text for Option C";
etc.