I have 2 forms developed in LiveCycle Designer. They have a few common fields. I need fields in 1 form be populated with data (values) from another. I believe this needs to deal with JS and global objects.
For instance, this script works in AcroForms.
//in one form
global.name = this.getField("Name").value;
//the following line in another form
if (global.name) this.getField("Name").value = global.name;
Is it possible to create anything similar for LiveCycle form?
Views
Replies
Total Likes
I am not familiar enough with AcroForms to give you a similar approach, but LiveCycle is XML based. You can easily export XML from one form to feed another. This can be done seamlessly if the forms fields have the same name, otherwise you will need to add a mapping layer (XSLT).
Views
Replies
Total Likes
Thank you for an advice. However, I'm looking for a solution to be used by a regular user not me as a developer. So when an applicant hover over or enters a field, it triggers JavaScript to auto populate this field with data from another form.
Views
Replies
Total Likes
Have a look on this solution:
Views
Replies
Total Likes
Views
Likes
Replies