I've created a multi-page form. I would like the information that a user enters in one (or two) of the boxes on the first page to repeat on the following pages without them having to re-enter the information. Is there a way to link these fields?
I've created a multi-page form. I would like the information that a user enters in one (or two) of the boxes on the first page to repeat on the following pages without them having to re-enter the information. Is there a way to link these fields?
Copy and paste this JavaScript as a On Blur Action in Text1 text field.
var a = this.getField("Text1");
var b = this.getField("Text2");
b.value = a.value
My favorite quote - "Success is the ability to go from one failure to another with no loss of enthusiasm.