Events Made Easy › Forums › How do I … › view data entered in dynamic fields
Tagged: Dynamic Data
- This topic has 5 replies, 2 voices, and was last updated 6 years, 6 months ago by Anonymous.
-
AuthorPosts
-
Fri 6 Apr 2018 at 21:29 #57813AnonymousInactive
I cannot figure out how to access data input in dynamic forms.
Also, when I attempted to put the #_DYNAMICDATA place holder in the form It only appeared at the top of the form regardless of where I inserted the placeholder.Here is my custom RSVP form code:
<table class=”eme-rsvp-form”>
<tbody>
<tr>
<th scope=”row”>Parent/Guardian’s First Name:</th>
<td>#_FIELD{Parent/Guardian’s First Name}</td>
</tr>
<tr>
<th scope=”row”>Parent/Guardian’s Last Name:</th>
<td>#_LASTNAME</td>
</tr>
<tr>
<th scope=”row”>Address:</th>
<td>#_FIELD{Address}</td>
</tr>
<tr>
<th scope=”row”>City:</th>
<td>#_FIELD{City}</td>
</tr>
<tr>
<th scope=”row”>Zip:</th>
<td>#_FIELD{Zip}</td>
</tr>
<tr>
<th scope=”row”>Parent/Guardian Cell Phone Number:</th>
<td>#_FIELD{Parent/Guardian Cell Phone Number}</td>
</tr>
<tr>
<th scope=”row”>Parent/Guardian Email Address:</th>
<td>#_EMAIL{}</td>
</tr>
<tr>
<th scope=”row”>Emergency Contact First Name:</th>
<td>#_FIELD{Emergency Contact First Name}</td>
</tr>
<tr>
<th scope=”row”>Emergency Contact Last Name:</th>
<td>#_FIELD{Emergency Contact Last Name}</td>
</tr>
<tr>
<th scope=”row”>Emergency Contact Phone Number:</th>
<td>#_FIELD{Emergency Contact Phone Number}</td>
</tr>
<tr>
<th scope=”row”>Number of Children Registering:</th>
<td>#_SEATS</td>
</tr>
<tr>
<th scope=”row”>Child’s First Name:</th>
<td>#_FIELD{Child’s First Name}</td>
</tr>
<tr>
<th scope=”row”>Child’s Last Name:</th>
<td>#_FIELD{Child’s Last Name}</td>
</tr>
<tr>
<th scope=”row”>Date of Birth:</th>
<td>#_FIELD{Date of Birth}</td>
</tr>
<tr>
<th scope=”row”>Age:</th>
<td>#_FIELD{Age}</td>
</tr>
<tr>
<th scope=”row”>Gender:</th>
<td>#_FIELD{Gender}</td>
</tr>
<tr>
<th scope=”row”>Is there a special friend your child would like to be with?:</th>
<td>#_FIELD{Is there a special friend your child would like to be with?}</td>
</tr>
<tr>
<th scope=”row”>Special Needs/Allergies:</th>
<td>#_FIELD{Special Needs/Allergies}</td>
</tr>
<tr>
<th scope=”row”>Do you agree to allow photos of your child to be used in church presentation or church promotional materials?:</th>
<td>#_FIELD{Do you agree to allow photos of your child to be used in church presentation or church promotional materials?}</td>
</tr>
</tbody>
</table>
#_DYNAMICDATAPlease fill in the code displayed here:
<br>
#_CAPTCHA
<br>
#_SUBMITHere is my dynamic form:
<table class=”eme-rsvp-form”>
<tbody>
<tr>
<th scope=”row”>Child’s First Name:</th>
<td>#_FIELD{Child’s First Name}</td>
</tr>
<tr>
<th scope=”row”>Child’s Last Name:</th>
<td>#_FIELD{Child’s Last Name}</td>
</tr>
<tr>
<th scope=”row”>Date of Birth:</th>
<td>#_FIELD{Date of Birth}</td>
</tr>
<tr>
<th scope=”row”>Age:</th>
<td>#_FIELD{Age}</td>
</tr>
<tr>
<th scope=”row”>Gender:</th>
<td>#_FIELD{Gender}</td>
</tr>
<tr>
<th scope=”row”>Is there a special friend your child would like to be with?:</th>
<td>#_FIELD{Is there a special friend your child would like to be with?}</td>
</tr>
<tr>
<th scope=”row”>Special Needs/Allergies:</th>
<td>#_FIELD{Special Needs/Allergies}</td>
</tr>
<tr>
<th scope=”row”>Do you agree to allow photos of your child to be used in church presentation or church promotional materials?:</th>
<td>#_FIELD{Do you agree to allow photos of your child to be used in church presentation or church promotional materials?}</td>
</tr>
</tbody>
</table>Fri 6 Apr 2018 at 23:23 #57814FrankyKeymasterYour html contains errors. Run the resulting html through a validator and fix these. A good validator: https://validator.w3.org/nu/#textarea
Concerning how to view the entered data: either do a “print view” in the list of events, or CSV (these links are found below the event name). Also editing a booking of course shows the data. And last but not least: when showing the list of registrations, one of the “search” fields is in fact a list of custom data fields (just click on all the search input fields until one shows a list of fields). Since showing custom data is in fact a heavy DB query, you need to select the custom fields you want.
Sat 7 Apr 2018 at 04:09 #57815AnonymousInactiveThank you. This is my first time getting into this type of stuff, so I greatly appreciate the help.
Wed 2 May 2018 at 00:19 #57937AnonymousInactiveSo I fixed the HTML, but when I have dynamic data repeat fields it removes the data from the previous fields and only saves the data from the last iteration of the field that was filled out. None of the duplicated custom fields shows any data in the edit registration view, but the last iteration shows in the csv export. Here is a dropbox link to the csv and the screenshot of the blank fields. https://www.dropbox.com/sh/tif84xj1y9tv45x/AABXqTXkinB1fFYjQ60rInbta?dl=0
Wed 2 May 2018 at 13:56 #57938FrankyKeymasterWould you mind giving me a temporary admin access to your site? So I check there …
Mon 7 May 2018 at 19:55 #57974AnonymousInactiveHave you had the chance to look at the site?
-
AuthorPosts
- The forum ‘How do I …’ is closed to new topics and replies.