Events Made Easy › Forums › Generic › Dynamic Data doesn't update
Tagged: Dynamicdata
- This topic has 3 replies, 2 voices, and was last updated 8 years ago by
Anonymous.
-
AuthorPosts
-
Thu 30 Nov 2017 at 15:56 #57061
Anonymous
InactiveHi,
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,
SangpurThu 30 Nov 2017 at 16:18 #57062Franky
KeymasterWhat 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}, …).
Thu 30 Nov 2017 at 16:21 #57063Anonymous
InactiveThe 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>
#_SUBMITThe 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;
}Thu 30 Nov 2017 at 16:26 #57064Anonymous
InactiveMy 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.
-
AuthorPosts
- The forum ‘Generic’ is closed to new topics and replies.