Custom validation script doesn't work on certain text boxes
I have the following custom validation script on a text box:
varClientName = event.value;
this.getField("Client Name pg16").value = varClientName;
this.getField("Client Name pg17").value = varClientName;
to autopopulate names further in the document. In this example, the name successfully was added to text box "Client Name pg16", but not "Client Name pg17". However, if I use "Prepare a Form" and I move text box "Client Name pg17" and then undo that move, the validation script does then work on that textbox.
I cannot possibly be expected to move each and every textbox each time I want to run a validation script. How can I solve this issue?
