I am revising a government form (an elephant designed by committee) that requires the users to add their name on every single page--sometimes more than once--and the thing is 21 pages long(!). How can I take the input from the first instance and use it to populate all other instances in the mega-form.
Thanks.
Buck
Replies
29-06-2008
Hi,
Let's say you have two text fileds, Field1 and Field2.
Select Field1 and choose javascript. On the onChange script, add for instance Field2.rawValue = Field1.rawValue. See if this works.