- This topic has 3 replies, 2 voices, and was last updated 6 years, 12 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
- The forum ‘Generic’ is closed to new topics and replies.
Events Made Easy › Forums › Generic › Dynamic Data doesn't update
Tagged: Dynamicdata
Hi,
To test the dynamic data feature i used copied the standard form and added both dynamic data and price.
#_dynamicprice works perfectly and changes every time i change the number of seats in the dropdown.
#_dynamicdata is setup to: “#_SEATS”,”greater than”,”0″,a template with just one custom field of type text,”repeat:yes”
one textfield is rendered but but nothing happens when i change the value of #_seats.
When i complete the booking and go into the details/edit for this booking the correct number of fields are saved.
Thanks in advance for looking into that issue,
Sangpur
What does your rsvp form look like? The check-value for dynamic data (your #_SEATS) needs to be present in your form (and not e.g. #_SPACES, #_SEATS{1}, …).
The Rsvp form looks like this:
<div class=”eme-rsvp-form”>
<div>
<div class=”formNames”>Nachname*:</div>
<div class=”formBoxes”>#_LASTNAME</div>
<div class=”formNames”>Vorname*:</div>
<div class=”formBoxes”>#REQ_FIRSTNAME</div>
</div>
<div>
<div class=”formNames”>Firma*:</div>
<div class=”formBoxes”>#REQ_FIELD{1}</div>
<div class=”formNames”>E-Mail-Adresse*:</div>
<div class=”formBoxes”>#_EMAIL</div>
</div>
<div>
<div class=”formNames”>Telefonnummer:</div>
<div class=”formBoxes”>#_PHONE</div>
<div class=”formNames”>Plätze*:</div>
<div class=”formBoxes”>#_SPACES</div>
</div>
<div>
<div class=”formNames”>Adresse & Kommentare:</div>
<div class=”formBoxes”>#_COMMENT</div>
</div>
<div>#_DYNAMICDATA</div>
<div>#_DYNAMICPRICE</div>
</div>
#_SUBMIT
The template for dynamicdata looks like this:
<div>#_FIELD{4}</div>
The css changes looks like this:
*{
box-sizing: border-box;
}
#div_eme-rsvp-form{
padding-top:40px !important;
}
.formNames{
width: 10%;
float: left;
padding: 0px 5px 0px 5px;
}
.formBoxes{
width: 40%;
float: left;
}
My bad, mistake found.
I used #_SEATS for #_DYNAMICDATA and #_SPACES for the form.
Thanks for the fast reply, you can delete the thread if you want.