I have a form where we need a field on one page to be autofilled with the text entered in another.
The difficulty is we need to allow the user to be able to override the second, autofilled field if need be, so using the same field name and setting binding to global doesn't allow for that.
I've tried putting a script in set to calculate.
First field is Year1_text. Value is User Enter-Required
Second field (to be autofilled) is Year1. Value is set to Calculated-User Can Override
Language is set for Javascript
script on Year1 field is:
this.rawValue=Year1_text.rawValue
I can't seem to get it to work.