Copy link to clipboard
Copied
Hi, I can name a textfield the same name on different pages. Enter text in one, exact text autopopulates.
I all the fields that autopopulate except the one on page 1 to become read only. Only way to change any of them is to use the field on page 1?
You would need to give the first field a different name and use a script to copy its value to the other fields.
If the first field is called "Name1" and the others "Name" then use this code as the custom calculation script for the latter:
event.value = this.getField("Name1").valueAsString;
Copy link to clipboard
Copied
You would need to give the first field a different name and use a script to copy its value to the other fields.
If the first field is called "Name1" and the others "Name" then use this code as the custom calculation script for the latter:
event.value = this.getField("Name1").valueAsString;
Copy link to clipboard
Copied
I greatly appreciate this, thank you.