I have a registration form on my site with some extra fields created with ChronoForms 3.1 RC5.5 on Joomla 1.5.15 and everything seems to work fine (input gets saved and email gets sent). When I try to edit the data using ChronoConnectivity I found that the second set of checkboxes are not being updated in the database. I turned email the results to yes in ChronoForms and the email shows the changes to the checkboxes, but if I click show data again the values are back to before the edit, but only on the second set of checkboxes. Everything else gets updated (including the first set of checkboxes. Also I have "ChronoForms handle my posted arrays" set to "yes" and the checkbox is marked as required.
Everything was created in ChronoForms and as far as I can tell works fine in ChronoConnectivity except this one issue. I can go in to PHPMyAdmin and change the value, but that's a real pain and I don't want my users messing with the database directly.
Here is what the code looks like for the second checkbox:
Everything was created in ChronoForms and as far as I can tell works fine in ChronoConnectivity except this one issue. I can go in to PHPMyAdmin and change the value, but that's a real pain and I don't want my users messing with the database directly.
Here is what the code looks like for the second checkbox:
<div class="form_item">
<div class="form_element cf_checkbox">
<label class="cf_label" style="display: none;">Verify Experience and Education</label>
<div class="float_left">
<input value="Attended at least two *** ********** **** ****** Institute Affiliate Courses (**** or **** or ****)" title="" class="radio validate-one-required" id="check30" name="check3[]" type="checkbox" />
<label for="check30" class="check_label">Attended at least two *** ********** **** ****** Institute Affiliate Courses (**** or **** or ****)</label>
<br />
<input value="Negotiated" title="" class="radio validate-one-required" id="check31" name="check3[]" type="checkbox" />
<label for="check31" class="check_label">Negotiated at least three (3) ********** **** ****** Transactions</label>
<br />
<input value="Completed ***'* “Fundamentals of ********** **** ******” Course" title="" class="radio validate-one-required" id="check32" name="check3[]" type="checkbox" />
<label for="check32" class="check_label">Completed ***'* “Fundamentals of ********** **** ******” Course</label>
<br />
<input value="Invest a minimum of 60% of professional time dedicated to ********** **** ******." title="" class="radio validate-one-required" id="check33" name="check3[]" type="checkbox" />
<label for="check33" class="check_label">Invest a minimum of 60% of professional time dedicated to ********** **** ******.</label>
<br />
<input value="Registered “**********” as my primary specialty on the *** **** database system" title="" class="radio validate-one-required" id="check34" name="check3[]" type="checkbox" />
<label for="check34" class="check_label">Registered “**********” as my primary specialty on the *** **** database system</label>
<br />
</div>
</div>
<div class="cfclear"> </div>
</div>