Copy link to clipboard
Copied
I have a couple of input fields that collect data in a pdf I am creating.
"Name" and "Date"
I would like these to be replicated on the top of each following page as read only, and without the red box around them.
Can anyone help (simple steps non coder here)? - thanks.
Copy link to clipboard
Copied
Create a field called "Name_Copy", for example. Set it as read-only.
As its custom Calculation script enter the following code:
event.value = this.getField("Name").valueAsString;
You're done.
Now you can duplicate it across all other pages.
Copy link to clipboard
Copied
Create a field called "Name_Copy", for example. Set it as read-only.
As its custom Calculation script enter the following code:
event.value = this.getField("Name").valueAsString;
You're done.
Now you can duplicate it across all other pages.
Copy link to clipboard
Copied
Perfect - thanks very much.