Events Made Easy Forums How do I … view data entered in dynamic fields

Tagged: 

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #57813
    Anonymous
    Inactive

    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>
    #_DYNAMICDATA

    Please fill in the code displayed here:
    <br>
    #_CAPTCHA
    <br>
    #_SUBMIT

    Here 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>

    #57814
    Franky
    Keymaster

    Your 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.

    #57815
    Anonymous
    Inactive

    Thank you. This is my first time getting into this type of stuff, so I greatly appreciate the help.

    #57937
    Anonymous
    Inactive

    So 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

    #57938
    Franky
    Keymaster

    Would you mind giving me a temporary admin access to your site? So I check there …

    #57974
    Anonymous
    Inactive

    Have you had the chance to look at the site?

Viewing 6 posts - 1 through 6 (of 6 total)
  • The forum ‘How do I …’ is closed to new topics and replies.
Scroll to Top