Let me start by saying, I pretty much taught myself Adobe LiveCycle using these forums. Thank you!!
The form I created in LC is very detailed for official record but the user needs a sheet of certain details to take with them out of the office. Most of the information they will need will come from repeating subforms. First the user answers a yes/no question. If the user answers yes, the boxes for information will pop up. I've listed below what I named the subforms and fields of one of the sections I need from the form on the summary sheet.
Original Information put in form:
Subform = SubjectSubform
Subform = SubjectHiddenContainer
Subform = SubjectDescription
TextField = SubjectLast
TextField = SubjectFirst
TextField = SubjectMI
DateField = SubjectDOB
Summary sheet to auto-populate:
Lastname, Firstname MI; 00/00/00
I know I can't global bind because the user of the form will most likely add more than one subject in the form.
I don't really know the first thing about javascript so I don't know if I should have a 'space' instead of an 'enter' or if the [+i+] i should actually be something other than the i or when to put spaces around a symbol, etc. A coworker of mine gave me the following to put in the textfield on the new summary page but it doesn't work:
vSubjects+=
xfa.resloveNode("SubjectSubform.SubjectHiddenContainer.SubjectDescription[+i+].SubjectLas t").rawValue+","+
xfa.resloveNode("SubjectSubform.SubjectHiddenContainer.SubjectDescription[+i+].SubjectFir st").rawValue+" "+
xfa.resloveNode("SubjectSubform.SubjectHiddenContainer.SubjectDescription[+i+].SubjectMI" ).rawValue+";"+
xfa.resloveNode("SubjectSubform.SubjectHiddenContainer.SubjectDescription[+i+].DOB").rawV alue+"\n";
Any help is greatly appreciated!
Amy
(if you have a link or know of an online class to a good Intro to javascript that would be a huge help too. So many out there and I don't know where to start.)