I'm creating a form that needs to have some data entered on the first page (a patient name) which then gets echoed to all of the subsequent pages on the form in case the pages get separated.
I have two master pages: one for the first page, with the company logo, and one for subsequent pages, which has the same logo but also includes a read-only field for the redisplay of the patient name. The patient name is entered on the first page, and a script that runs on change populates the read-only field in the second master page with the value of the entered field.
The second and following pages use the "subsequent page" master page.
All of that works, but the odd thing is that the value of the field only displays on the FIRST iteration of the subsequent page. In other words, the value entered on page 1 displays correctly on page 2, but on pages 3 and forward it doesn't show. The field is there, but it's empty.
I assumed that setting a read-only field's data within a master page / header would cause it to display on all pages that use that master page, but it seems to only get displayed on the first such page.
How do I make the field entered/filled out on the first page echo on all subsequent pages, in the header?
Thanks for any tips.