Expand my Community achievements bar.

Copy Page_1's my_NAME to Page_3's my_NAME?

Avatar

Level 8

Hello

I have 3 pages in my_form, page1 has Address details and Page 3 also has the Address details.

When user enters the address details on Page1, my below Java Script is copying them to Page3 address details, fine.

(I wrote it on Page1 's Name field's EXIT event)

var myName;

myName1 = this.rawValue;

xfa.resolveNode("my_form.Page3.Address.NAME").rawValue = myName;

Working fine.

But, requirements is: If user changes the value in NAME field of PAGE3, it should NOT copied over to Page1's NAME field, meaning, NOT vice versa! Top to bottom (Page1 to Page3) is okay, but not COPY from Page3 to Page1 (bottom to top).

Pls. let me kow how to get it done?

Thank you

0 Replies