I currently have a form that when submitted certain data from certain fields is displayed within the body of the email.
I have an area where the user can enter information on more than one individual by clicking ADD. The ADD option when click will display another similar entry block for the individual's information to be entered. However, if I enter information for more than one individual it only gets the information for the first block of information entered.
Currently, my event.target.submitForm contains the code to retrieve the data I need...
event.target.submitForm({cURL:"mailto:dice@info.edu?subject=D.I.C.E. Submission Form&body=ACTIVITY LOCATION: "+LOCATION.rawValue+ "%0D%0AINCIDENT DATE: "+INCIDENT_DATE.rawValue+ "%0D%0AINCIDENT TIME: "+INCIDENT_TIME.rawValue+ "%0D%0A%0D%0AINCIDENT INFORMATION NARRATIVE: "+COMMENTS.rawValue+ "%0D%0A%0D%0ASUBMITTER: "+SUBMITTER.rawValue+ "%0D%0ASUBMITTER_PHONE :"+SUBMITTER_PHONE.rawValue+ "%0D%0A%0D%0ASUBJECT INFORMATION%0D%0ALAST: "+CEB_DICE_NAMES.CEB_DICE_NAMES.LAST.rawValue+ "%0D%0AFIRST: "+CEB_DICE_NAMES.CEB_DICE_NAMES.FIRST.rawValue+ "%0D%0ACASINO EMPLOYEE: "+CEB_DICE_NAMES.CEB_DICE_NAMES.CAS_EMPLOYEE.rawValue+ "%0D%0AGENDER: "+CEB_DICE_NAMES.CEB_DICE_NAMES.SEX.rawValue+ "%0D%0ADATE OF BIRTH: "+CEB_DICE_NAMES.CEB_DICE_NAMES.DOB.rawValue,cSubmitAs:"PDF",cCharset:"utf-8"});
I need to code it so it knows to check for more than one individual being entered.