In LiveCycle Design, I understand how to set the tabbing order of form fields on a page. How does one cause the cursor to advance to the first form field of the next page instead or returning to the top of the just completed page?
In LiveCycle Design, I understand how to set the tabbing order of form fields on a page. How does one cause the cursor to advance to the first form field of the next page instead or returning to the top of the just completed page?
You can specify tabbing by rows ("rows"), columns ("columns"), or document structure ("structure").
For example, the following code sets up tabbing by rows for page 2 of the document:
this.setPageTabOrder(2, "rows");
To set the tab order on each page of the document, you would execute a script like this:
for (var i = 0; i < this.numPages; i++)
this.setPageTabOrder(i, "rows");
My favorite quote - "Success is the ability to go from one failure to another with no loss of enthusiasm.