Hi there
I am having trouble in the new (vs 3) email set-up. In one particular form, that I have included a small piece of Javascript (ajaxian type thing to show more fields)
The moment I add any item... any item at all in the Email Set-Up panel, I can not save... even after trying the apply button.
This prompts two questions - what is the correct way to add a small javascript; and second can you shed light on the error message I am getting...
element.getProperty("name") is null
[Break on this error] $ES('select',Template).each(function(element){
would this indicate in my form code I have an error or overlooked something?
Thanks in advance
Simon
I am having trouble in the new (vs 3) email set-up. In one particular form, that I have included a small piece of Javascript (ajaxian type thing to show more fields)
The moment I add any item... any item at all in the Email Set-Up panel, I can not save... even after trying the apply button.
This prompts two questions - what is the correct way to add a small javascript; and second can you shed light on the error message I am getting...
element.getProperty("name") is null
[Break on this error] $ES('select',Template).each(function(element){
would this indicate in my form code I have an error or overlooked something?
Thanks in advance
Simon
Hi Simon.
I assume that your JavaScript is in the FormHTML or the JavaScript boxes? This should be OK. It sounds as though maybe something isn't closed properly and the JavaScript is leaking :-(
Try deleting all the form htm and resaving the form to see if that fixes it (paste it somewhere safe so that you can put it back). And the same with the form JavaScript. That should tell you were to look next.
Bob
I assume that your JavaScript is in the FormHTML or the JavaScript boxes? This should be OK. It sounds as though maybe something isn't closed properly and the JavaScript is leaking :-(
Try deleting all the form htm and resaving the form to see if that fixes it (paste it somewhere safe so that you can put it back). And the same with the form JavaScript. That should tell you were to look next.
Bob
Hi Simon,
give V3.1 a try and let me know!
Cheers
Max
give V3.1 a try and let me know!
Cheers
Max
Hi Bob, Max
Thanks for your quick attention! Ok.. did both - in order - removed the script... also tried removing validation on "name" - both to no avail.
Have backed-up and installed RC1... had no effect either... so I have taken your advice Bob and removed the formCode altogether... aaaaah yes!! it saves the emails. (Though re-instating the code; once again I am unable to save the form... I am on the case!! )
I am going back to my coded form for a closer look and will report back in 30 minutes
Thanks in advance. Simon
( 😶 )
Thanks for your quick attention! Ok.. did both - in order - removed the script... also tried removing validation on "name" - both to no avail.
Have backed-up and installed RC1... had no effect either... so I have taken your advice Bob and removed the formCode altogether... aaaaah yes!! it saves the emails. (Though re-instating the code; once again I am unable to save the form... I am on the case!! )
I am going back to my coded form for a closer look and will report back in 30 minutes
Thanks in advance. Simon
( 😶 )
element.getProperty("name") is null
(?)()()index2.p...nocontact (line 440)
(?)()()index2.p...nocontact (line 439)
Checkform()index2.p...nocontact (line 418)
submitbutton("applychanges")index2.p...nocontact (line 310)
onclick(click clientX=1185, clientY=117)index2.p...8dA%3D%3D (line 3)
[Break on this error] });
What has me thrown is that it was working previously - though I upgraded... hmmm. I have double checked the forms code and that seems fine... if not overly large; and moved the javascript into the designated area (below the form code); though still it is throwing an error... into where I do not know.
Any help??
Thanks. Simon
(?)()()index2.p...nocontact (line 440)
(?)()()index2.p...nocontact (line 439)
Checkform()index2.p...nocontact (line 418)
submitbutton("applychanges")index2.p...nocontact (line 310)
onclick(click clientX=1185, clientY=117)index2.p...8dA%3D%3D (line 3)
[Break on this error] });
What has me thrown is that it was working previously - though I upgraded... hmmm. I have double checked the forms code and that seems fine... if not overly large; and moved the javascript into the designated area (below the form code); though still it is throwing an error... into where I do not know.
Any help??
Thanks. Simon
Got it !!!
🤣
It is memory... I decided to try pasting the code in chunks to see WHERE I was getting the error... low and behold... all went in smoothly
The big question now... other than an "ini" file, anyway to up the memory requirements??
:)
Simon
🤣
It is memory... I decided to try pasting the code in chunks to see WHERE I was getting the error... low and behold... all went in smoothly
The big question now... other than an "ini" file, anyway to up the memory requirements??
:)
Simon
Just a closing note...
I had "Load ChronoForms CSS/JS files" set to yes... and was getting the following error... note the location of the CSS file - the double "//"
Warning: opendir(/usr/home/..... /www/htdocs/content/components/com_chronocontact/themes//css/) [function.opendir]: failed to open dir: No such file or directory in /usr/home/..... /www/htdocs/content/components/com_chronocontact/chronocontact.html.php on line 40
Warning: readdir(): supplied argument is not a valid Directory resource in /usr/home/...... /www/htdocs/content/components/com_chronocontact/chronocontact.html.php on line 41
Warning: closedir(): supplied argument is not a valid Directory resource in /usr/home/...... /www/htdocs/content/components/com_chronocontact/chronocontact.html.php on line 45
Got it for now... so on with the simpler stuff 🙂
Simon
I had "Load ChronoForms CSS/JS files" set to yes... and was getting the following error... note the location of the CSS file - the double "//"
Warning: opendir(/usr/home/..... /www/htdocs/content/components/com_chronocontact/themes//css/) [function.opendir]: failed to open dir: No such file or directory in /usr/home/..... /www/htdocs/content/components/com_chronocontact/chronocontact.html.php on line 40
Warning: readdir(): supplied argument is not a valid Directory resource in /usr/home/...... /www/htdocs/content/components/com_chronocontact/chronocontact.html.php on line 41
Warning: closedir(): supplied argument is not a valid Directory resource in /usr/home/...... /www/htdocs/content/components/com_chronocontact/chronocontact.html.php on line 45
Got it for now... so on with the simpler stuff 🙂
Simon
Hi Simon,
I've never encountered memory problems with saving a form :-(
If the code is long then I tend to put a "require_once('path')" statement in the ChronoForms boxes and put the actual code in separate files in a com_chronocontact/includes/form_name folder. Mostly that works very well. Some of the automated features of ChronoForms won't work but with a long form I'm probably doing that in the code anyhow.
Bob
I've never encountered memory problems with saving a form :-(
If the code is long then I tend to put a "require_once('path')" statement in the ChronoForms boxes and put the actual code in separate files in a com_chronocontact/includes/form_name folder. Mostly that works very well. Some of the automated features of ChronoForms won't work but with a long form I'm probably doing that in the code anyhow.
Bob
Bob
Thats going a little over my head... (I will need to re-read) though I am still working with the form/s (there are several) mentioned above... and I am getting this error (prior post)... its looking for a "theme" though for the life of me I can not see where or how I should be configuring the theme... either 'default' or otherwise. Have I missed something?
I might add the forms are working... by degree. The larger of the two does not have "email enabled" though is functioning ok (??) Am getting the data returned though no email now. Seems very shaky!!
Simon
Thats going a little over my head... (I will need to re-read) though I am still working with the form/s (there are several) mentioned above... and I am getting this error (prior post)... its looking for a "theme" though for the life of me I can not see where or how I should be configuring the theme... either 'default' or otherwise. Have I missed something?
I might add the forms are working... by degree. The larger of the two does not have "email enabled" though is functioning ok (??) Am getting the data returned though no email now. Seems very shaky!!
Simon
here are some references:
http://www.ttoc.com.au/content/index.php?option=com_content&view=article&id=100&Itemid=80
http://www.ttoc.com.au/content/index.php?option=com_content&view=article&id=99&Itemid=97
funnily the error does not appear if called through the 'plug-in'
Simon
<!-- w --><a class="postlink" href="http://www.artatwork.com.au">www.artatwork.com.au</a><!-- w -->
http://www.ttoc.com.au/content/index.php?option=com_content&view=article&id=100&Itemid=80
http://www.ttoc.com.au/content/index.php?option=com_content&view=article&id=99&Itemid=97
funnily the error does not appear if called through the 'plug-in'
Simon
<!-- w --><a class="postlink" href="http://www.artatwork.com.au">www.artatwork.com.au</a><!-- w -->
Hi Simon,
If your form is not created using the V3.1 wizard then don't enable the "load Chronoforms Js/CSS" and so this will fix the errors you was getting!
so, right now you can't receive the emails ? do you have the emails shown at the "setu emails" tab and all is enabled ?
Max
If your form is not created using the V3.1 wizard then don't enable the "load Chronoforms Js/CSS" and so this will fix the errors you was getting!
so, right now you can't receive the emails ? do you have the emails shown at the "setu emails" tab and all is enabled ?
Max
Yeah.. right Max. exactly.
In one of the forms it seems I can not enable Emails... though all other functionality is operative. What is the story? I am stumbling over something that should be obvious... I am sure
Simon
In one of the forms it seems I can not enable Emails... though all other functionality is operative. What is the story? I am stumbling over something that should be obvious... I am sure
Simon
Hi All!
I was having the same issue in latest version of ChronoForms, It was due to following in form HTML.
<input type="image" src="button.gif" />
Changed the code to following:
<input type="image" src="button.gif" name="button_image"/>
and it worked like a charm.
So make sure you specify name attribute, if you want to go with image buttons.
Salman
I was having the same issue in latest version of ChronoForms, It was due to following in form HTML.
<input type="image" src="button.gif" />
Changed the code to following:
<input type="image" src="button.gif" name="button_image"/>
and it worked like a charm.
So make sure you specify name attribute, if you want to go with image buttons.
Salman
Hi Simon,
is this a new form you are creating with V3.1 or an old one edited ?
Max
is this a new form you are creating with V3.1 or an old one edited ?
Max
Max,
Using the updated version - RC1 (am about to try the RC2). Do I need to re-install the forms?
Am still getting this error message:
Parse error: syntax error, unexpected '-', expecting '{' in /usr/home/...../www/htdocs/content/components/com_chronocontact/chronocontact.php(39) : eval()'d code on line 3
Thanks in advance
Simon
Using the updated version - RC1 (am about to try the RC2). Do I need to re-install the forms?
Am still getting this error message:
Parse error: syntax error, unexpected '-', expecting '{' in /usr/home/...../www/htdocs/content/components/com_chronocontact/chronocontact.php(39) : eval()'d code on line 3
Thanks in advance
Simon
Hi simong,
Hard to be sure but that's the DB Connection data loading. My guess is that you have a '-' in one of your field names and that something doesn't like it.
Bob
Hard to be sure but that's the DB Connection data loading. My guess is that you have a '-' in one of your field names and that something doesn't like it.
Bob
Hi Simon,
After getting RC2 installed I suggest you open every form and save it to initialize some data, however your error is just as Bob described!
Regards
Max
After getting RC2 installed I suggest you open every form and save it to initialize some data, however your error is just as Bob described!
Regards
Max
Thanks heaps
I had renamed the "database connection" table to something shorter that included this rogue dash. (Its been a good learning curve. Thanks loads ))
In closing, as I will get out of your hair; I know you must have better things to do than ponder the ineptitude of artists like myself... to remove this now rogue table (with the dash); I need to use phpMyAdmin - correct?
Thanks for some great support (I have written a review as such); I feel I can now confidently say I am a ChronoForms expert 🤣
As developers and as a product; you certainly have my wholehearted support.
Yours. Simon
I had renamed the "database connection" table to something shorter that included this rogue dash. (Its been a good learning curve. Thanks loads ))
In closing, as I will get out of your hair; I know you must have better things to do than ponder the ineptitude of artists like myself... to remove this now rogue table (with the dash); I need to use phpMyAdmin - correct?
Thanks for some great support (I have written a review as such); I feel I can now confidently say I am a ChronoForms expert 🤣
As developers and as a product; you certainly have my wholehearted support.
Yours. Simon
Hi Simon,
You will need PHPMyAdmin or the Joomla EasySQL extension. You can change the name of a table with
Bob
You will need PHPMyAdmin or the Joomla EasySQL extension. You can change the name of a table with
ALTER TABLE `jos_old-name` RENAME TO `jos_new_name`;
Bob
Now Bob...
thats is unfair. you want me to do what with what SQL??? Just going back to handcoding forms is a learning curve for me... and now you want me to learn SQL. !!! ooh by gosh.
As the forms are seasonal (a school back from recess) I was fortunate enough to be able to create new tables... though in the maelstrom to get them working I created several tables... several too many. I am about to use "PU Database Admin" to remove them... hopefully then move on with a clean slate.
Kind regards
Simon
>> Am I sticking my head into something I should not do? What is "best practice" to clear the database of the 'rogue' forms and tables?
(I am reasonably familiar with phpMyAdmin)
thats is unfair. you want me to do what with what SQL??? Just going back to handcoding forms is a learning curve for me... and now you want me to learn SQL. !!! ooh by gosh.
As the forms are seasonal (a school back from recess) I was fortunate enough to be able to create new tables... though in the maelstrom to get them working I created several tables... several too many. I am about to use "PU Database Admin" to remove them... hopefully then move on with a clean slate.
Kind regards
Simon
>> Am I sticking my head into something I should not do? What is "best practice" to clear the database of the 'rogue' forms and tables?
(I am reasonably familiar with phpMyAdmin)
Hi Simon,
No learning here, you need to delete or rename some table then you MUST do it with PHPmyadmin or some SQL admin tool
Regards
Max
No learning here, you need to delete or rename some table then you MUST do it with PHPmyadmin or some SQL admin tool
Regards
Max
First, let me say Chronoforms is brilliant. I just pulled off something I never thought I could do without a programmer. Anyway, I had the same problem, except my issue was that I had saved a form and then in the textarea, I had added text and made the text area readonly. This was designed as a "agree to our terms and conditions"... then when I went to create the email form, I was getting the error described. I removed my "terms and conditions" text from the textarea, resaved the form, added my email details, resaved and then added my textarea stuff back in (I just have to remember that in the future if I need to modify the email form). The other thing that happens is if I go and use the Form Wizard editor, then it seems to wipe out some of the settings in the form like "Joomla Plugin" becomes unticked, Data to save to table is no longer selected etc. I am using V3.1 RC2
Hi salubrium,
Well done. I think both these problems are known bugs and Max will fix them in a future release.
Bob
Well done. I think both these problems are known bugs and Max will fix them in a future release.
Bob
Hi salubrium,
Thank you,
Max
Thank you,
then when I went to create the email form, I was getting the error described
which error please ?Max
I'm also having this issue, with an approximately 65-item form.
I created my form outside of Chronoforms to format/style it the way I wanted, and then pasted the code into the "Form Code" tab for the appropriate form.
I created a DB table using Chronoforms, avoiding any dashes. I do use an underscore in the table name.
The form name also has no dashes in the name.
I noticed some of the form-classes and names (such as class="radio radio radio validate-one-required") which were created when I initially used the form wizard to create part of the form, do have dashes in them. Since the class has spaces in it, I'm not sure it's valid although BBEdit validates it fine.
I set "Load Chronoforms CSS/JS Files?" to "No".
Here's what I've tried so far:
renamed the DB to avoid dashes.
Toggled the Load Chronoforms CSS/JS Files to No, and Yes.
Tried an E-mail Setup with and without Dynamic To fields.
None of these variables seem to make a difference.
I AM able to fill out the form and the form data IS saved to the DB table. The only thing standing between success and failure at this moment is being able to send out a confirmation e-mail with the form data to the form user and an administrator.
Code for the form is attached, cut from the 'Form Code" viewing box:
I created my form outside of Chronoforms to format/style it the way I wanted, and then pasted the code into the "Form Code" tab for the appropriate form.
I created a DB table using Chronoforms, avoiding any dashes. I do use an underscore in the table name.
The form name also has no dashes in the name.
I noticed some of the form-classes and names (such as class="radio radio radio validate-one-required") which were created when I initially used the form wizard to create part of the form, do have dashes in them. Since the class has spaces in it, I'm not sure it's valid although BBEdit validates it fine.
I set "Load Chronoforms CSS/JS Files?" to "No".
Here's what I've tried so far:
renamed the DB to avoid dashes.
Toggled the Load Chronoforms CSS/JS Files to No, and Yes.
Tried an E-mail Setup with and without Dynamic To fields.
None of these variables seem to make a difference.
I AM able to fill out the form and the form data IS saved to the DB table. The only thing standing between success and failure at this moment is being able to send out a confirmation e-mail with the form data to the form user and an administrator.
Code for the form is attached, cut from the 'Form Code" viewing box:
<h1>ENROLLMENT APPLICATION FOR 2009–2010</h1>
<p>Please complete ALL information requested, as it is required by the State of Colorado. Incomplete applications will be returned and may lose their placement order when filling classes.</p>
<p><strong>All information contained in this form is strictly confidential and for school use only. A roster of student information by class (name, parents, address, and phone number) will be distributed to the other members of the cooperative at
the beginning of the school year. By submitting this application, I acknowledge that this information will be used in
this manner.</strong> If you do not wish to be included on the roster for privacy reasons, please let the enrollment chairperson
know of your wishes at the time of application. All information in this application can be changed as necessary.</p>
<label style="width: 300px;">Application Date (today's date): mm/dd/yyyy</label>
<input class="cf_inputbox required" maxlength="150" size="10" id="text_1" name="application_date" type="text" />
<fieldset>
<legend>Child Information</legend>
<h3>Name and Birthdate</h3>
<ol>
<li> <label>Child's First Name</label>
<input class="cf_inputbox required" maxlength="150" size="30" id="text_2" name="child_first_name" type="text" /></li>
<li><label>Child's Middle Name</label>
<input class="cf_inputbox required" maxlength="150" size="10" id="text_3" name="child_middle_name" type="text" /> </li>
<li><label>Child's Last Name</label>
<input class="cf_inputbox required" maxlength="150" size="30" id="text_4" name="child_last_name" type="text" /></li>
<li><label>Birth Month</label>
<select class="cf_inputbox validate-selection" id="select_1" size="1" name="birth_month">
<option value="">Choose Option</option>
<option value="January">January</option>
<option value="February">February</option>
<option value="March">March</option>
<option value="April">April</option>
<option value="May">May</option>
<option value="June">June</option>
<option value="July">July</option>
<option value="August">August</option>
<option value="September">September</option>
<option value="October">October</option>
<option value="November">November</option>
<option value="December">December</option>
</select></li>
<li><label>Birth Date</label>
<select class="cf_inputbox validate-selection" id="select_2" size="1" name="birth_date">
<option value="">Choose Option</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
<option value="11">11</option>
<option value="12">12</option>
<option value="13">13</option>
<option value="14">14</option>
<option value="15">15</option>
<option value="16">16</option>
<option value="17">17</option>
<option value="18">18</option>
<option value="19">19</option>
<option value="20">20</option>
<option value="21">21</option>
<option value="22">22</option>
<option value="23">23</option>
<option value="24">24</option>
<option value="25">25</option>
<option value="26">26</option>
<option value="27">27</option>
<option value="28">28</option>
<option value="29">29</option>
<option value="30">30</option>
<option value="31">31</option>
</select></li>
<li><label>Birth Year</label>
<select class="cf_inputbox validate-selection" id="select_3" size="1" name="birth_year">
<option value="">Choose Option</option>
<option value="2004">2004</option>
<option value="2005">2005</option>
<option value="2006">2006</option>
<option value="2007">2007</option>
<option value="2008">2008</option>
<option value="2009">2009</option>
<option value="2010">2010</option>
<option value="2011">2011</option>
<option value="2012">2012</option>
<option value="2013">2013</option>
</select></li>
<li>
<label>Gender</label>
<input value="Male" class="radio radio radio radio validate-one-required" id="Male" name="Gender" type="radio" value="male" />
<label for="Male" class="radio_label">Male</label>
<input value="Female" class="radio radio radio radio validate-one-required" id="Female" name="Gender" type="radio" value="female" />
<label for="Female" class="radio_label">Female</label></li>
</ol>
<h3>Child's Primary Address</h3>
<ol>
<li> <label>Street</label>
<textarea class="cf_inputbox required" rows="2" id="text_5" cols="30" name="child_street"></textarea></li>
<li><label>City</label>
<input class="cf_inputbox required" maxlength="150" size="30" id="text_6" name="child_city" type="text" /></li>
<li><label>State</label>
<select class="cf_inputbox validate-selection" id="select_4" size="1" name="child_state">
<option value="">Choose Option</option>
<option value="Alabama - AL">Alabama - AL</option>
<option value="Alaska - AK">Alaska - AK</option>
<option value="American Samoa - AS">American Samoa - AS</option>
<option value="Arizona - AZ">Arizona - AZ</option>
<option value="Arkansas - AR">Arkansas - AR</option>
<option value="California - CA">California - CA</option>
<option selected="selected" value="Colorado - CO">Colorado - CO</option>
<option value="Connecticut - CT">Connecticut - CT</option>
<option value="Delaware - DE">Delaware - DE</option>
<option value="District of Columbia - DC">District of Columbia - DC</option>
<option value="Federated States of Micronesia* - FM">Federated States of Micronesia* - FM</option>
<option value="Florida - FL">Florida - FL</option>
<option value="Georgia - GA">Georgia - GA</option>
<option value="Guam - GU">Guam - GU</option>
<option value="Hawaii - HI">Hawaii - HI</option>
<option value="Idaho - ID">Idaho - ID</option>
<option value="Illinois - IL">Illinois - IL</option>
<option value="Indiana - IN">Indiana - IN</option>
<option value="Iowa - IA">Iowa - IA</option>
<option value="Kansas - KS">Kansas - KS</option>
<option value="Kentucky - KY">Kentucky - KY</option>
<option value="Louisiana - LA">Louisiana - LA</option>
<option value="Maine - ME">Maine - ME</option>
<option value="Marshall Islands* - MH">Marshall Islands* - MH</option>
<option value="Maryland - MD">Maryland - MD</option>
<option value="Massachusetts - MA">Massachusetts - MA</option>
<option value="Michigan - MI">Michigan - MI</option>
<option value="Minnesota - MN">Minnesota - MN</option>
<option value="Mississippi - MS">Mississippi - MS</option>
<option value="Missouri - MO">Missouri - MO</option>
<option value="Montana - MT">Montana - MT</option>
<option value="Nebraska - NE">Nebraska - NE</option>
<option value="Nevada - NV">Nevada - NV</option>
<option value="New Hampshire - NH">New Hampshire - NH</option>
<option value="New Jersey - NJ">New Jersey - NJ</option>
<option value="New Mexico - NM">New Mexico - NM</option>
<option value="New York - NY">New York - NY</option>
<option value="North Carolina - NC">North Carolina - NC</option>
<option value="North Dakota - ND">North Dakota - ND</option>
<option value="Northern Mariana Islands - MP">Northern Mariana Islands - MP</option>
<option value="Ohio - OH">Ohio - OH</option>
<option value="Oklahoma - OK">Oklahoma - OK</option>
<option value="Oregon - OR">Oregon - OR</option>
<option value="Palau* - PW">Palau* - PW</option>
<option value="Pennsylvania - PA">Pennsylvania - PA</option>
<option value="Puerto Rico - PR">Puerto Rico - PR</option>
<option value="Rhode Island - RI">Rhode Island - RI</option>
<option value="South Carolina - SC">South Carolina - SC</option>
<option value="South Dakota - SD">South Dakota - SD</option>
<option value="Tennessee - TN">Tennessee - TN</option>
<option value="Texas - TX">Texas - TX</option>
<option value="Utah - UT">Utah - UT</option>
<option value="Vermont - VT">Vermont - VT</option>
<option value="Virgin Island - VI">Virgin Island - VI</option>
<option value="Virginia - VA">Virginia - VA</option>
<option value="Washington - WA">Washington - WA</option>
<option value="West Virginia - WV">West Virginia - WV</option>
<option value="Wisconsin - WI">Wisconsin - WI</option>
<option value="Wyoming - WY">Wyoming - WY</option>
</select></li>
<li><label>ZIP</label>
<input class="cf_inputbox required" maxlength="10" size="10" id="text_7" name="child_zip" type="text" /></li>
<li><label>Phone</label>
<input class="cf_inputbox required" maxlength="150" size="30" id="text_8" name="child_phone" type="text" /></li>
</ol>
</fieldset>
<fieldset>
<legend>Class Selection</legend>
<ol>
<li>
<label style="width: 250px;">Select the class requested for your child's enrollment:</label>
<input value="Tadpoles (Tuesday)" class="radio radio radio validate-one-required" id="Tadpoles_Tuesday" name="class_requested" type="radio" />
<label for="Tadpoles_Tuesday" class="radio_label">Tadpoles (Tuesday)</label>
</li>
<li><input value="Tadpoles (Thursday)" class="radio radio radio validate-one-required" id="Tadpoles_Thursday" name="class_requested" type="radio" />
<label for="Tadpoles_Thursday" class="radio_label">Tadpoles (Thursday)</label>
</li>
<li><input value="Tadpoles (January Start)" class="radio radio radio validate-one-required" id="Tadpoles_JanuaryStart" name="class_requested" type="radio" />
<label for="Tadpoles_JanuaryStart" class="radio_label">Tadpoles (January Start)</label>
</li>
<li><input value="Polliwogs (Morning)" class="radio radio radio validate-one-required" id="Polliwogs_Morning" name="class_requested" type="radio" />
<label for="Polliwogs_Morning" class="radio_label">Polliwogs (Morning)</label>
</li>
<li><input value="Polliwogs (Afternoon)" class="radio radio radio validate-one-required" id="Polliwogs_Afternoon" name="class_requested" type="radio" />
<label for="Polliwogs_Afternoon" class="radio_label">Polliwogs (Afternoon)</label>
</li>
<li><input value="Frogs" class="radio radio radio validate-one-required" id="Frogs" name="class_requested" type="radio" />
<label for="Frogs" class="radio_label">Frogs</label>
</li>
</ol>
</fieldset>
<fieldset>
<legend>Parent/Guardian Information</legend>
<h3>Primary Parent/Guardian</h3>
<ol>
<li><label>First Name</label>
<input class="cf_inputbox required" maxlength="150" size="30" id="text_9" name="primary_first_name" type="text" />
</li>
<li><label>Last Name</label>
<input class="cf_inputbox required" maxlength="150" size="30" id="text_10" name="primary_last_name" type="text" />
</li></ol>
<h4>Address</h4>
<ol>
<li><label>Same as Child's Primary Address?</label>
<input value="Yes" class="radio radio" id="Yes" name="Primary_Address_Same_as_Child_Address" type="radio" /><label for="Yes" class="radio_label">Yes</label>
</li>
<li><input value="No; my address is listed below:" class="radio radio" id="No_my_address_is_listed_below" name="Primary_Address_Same_as_Child_Address" type="radio" />
<label for="No_my_address_is_listed_below" class="radio_label">No; my address is listed below:</label>
</li>
<li><label>Street</label>
<textarea class="cf_inputbox" rows="2" id="text_11" cols="30" name="primary_street_address"></textarea>
</li>
<li><label>City</label>
<input class="cf_inputbox" maxlength="150" size="30" id="text_12" name="primary_city" type="text" />
</li>
<li><label>State</label>
<select class="cf_inputbox" id="select_5" size="1" name="primary_state">
<option value="">Choose Option</option>
<option value="Alabama - AL">Alabama - AL</option>
<option value="Alaska - AK">Alaska - AK</option>
<option value="American Samoa - AS">American Samoa - AS</option>
<option value="Arizona - AZ">Arizona - AZ</option>
<option value="Arkansas - AR">Arkansas - AR</option>
<option value="California - CA">California - CA</option>
<option selected="selected" value="Colorado - CO">Colorado - CO</option>
<option value="Connecticut - CT">Connecticut - CT</option>
<option value="Delaware - DE">Delaware - DE</option>
<option value="District of Columbia - DC">District of Columbia - DC</option>
<option value="Federated States of Micronesia* - FM">Federated States of Micronesia* - FM</option>
<option value="Florida - FL">Florida - FL</option>
<option value="Georgia - GA">Georgia - GA</option>
<option value="Guam - GU">Guam - GU</option>
<option value="Hawaii - HI">Hawaii - HI</option>
<option value="Idaho - ID">Idaho - ID</option>
<option value="Illinois - IL">Illinois - IL</option>
<option value="Indiana - IN">Indiana - IN</option>
<option value="Iowa - IA">Iowa - IA</option>
<option value="Kansas - KS">Kansas - KS</option>
<option value="Kentucky - KY">Kentucky - KY</option>
<option value="Louisiana - LA">Louisiana - LA</option>
<option value="Maine - ME">Maine - ME</option>
<option value="Marshall Islands* - MH">Marshall Islands* - MH</option>
<option value="Maryland - MD">Maryland - MD</option>
<option value="Massachusetts - MA">Massachusetts - MA</option>
<option value="Michigan - MI">Michigan - MI</option>
<option value="Minnesota - MN">Minnesota - MN</option>
<option value="Mississippi - MS">Mississippi - MS</option>
<option value="Missouri - MO">Missouri - MO</option>
<option value="Montana - MT">Montana - MT</option>
<option value="Nebraska - NE">Nebraska - NE</option>
<option value="Nevada - NV">Nevada - NV</option>
<option value="New Hampshire - NH">New Hampshire - NH</option>
<option value="New Jersey - NJ">New Jersey - NJ</option>
<option value="New Mexico - NM">New Mexico - NM</option>
<option value="New York - NY">New York - NY</option>
<option value="North Carolina - NC">North Carolina - NC</option>
<option value="North Dakota - ND">North Dakota - ND</option>
<option value="Northern Mariana Islands - MP">Northern Mariana Islands - MP</option>
<option value="Ohio - OH">Ohio - OH</option>
<option value="Oklahoma - OK">Oklahoma - OK</option>
<option value="Oregon - OR">Oregon - OR</option>
<option value="Palau* - PW">Palau* - PW</option>
<option value="Pennsylvania - PA">Pennsylvania - PA</option>
<option value="Puerto Rico - PR">Puerto Rico - PR</option>
<option value="Rhode Island - RI">Rhode Island - RI</option>
<option value="South Carolina - SC">South Carolina - SC</option>
<option value="South Dakota - SD">South Dakota - SD</option>
<option value="Tennessee - TN">Tennessee - TN</option>
<option value="Texas - TX">Texas - TX</option>
<option value="Utah - UT">Utah - UT</option>
<option value="Vermont - VT">Vermont - VT</option>
<option value="Virgin Island - VI">Virgin Island - VI</option>
<option value="Virginia - VA">Virginia - VA</option>
<option value="Washington - WA">Washington - WA</option>
<option value="West Virginia - WV">West Virginia - WV</option>
<option value="Wisconsin - WI">Wisconsin - WI</option>
<option value="Wyoming - WY">Wyoming - WY</option>
</select></li>
<li><label>ZIP</label>
<input class="cf_inputbox" maxlength="150" size="10" id="text_13" name="primary_zip" type="text" /></li></ol>
<h4>Phone and E-mail</h4>
<ol>
<li><label>Home Phone</label>
<input class="cf_inputbox" maxlength="150" size="30" id="text_14" name="primary_home_phone" type="text" />
</li>
<li><label>Mobile Phone</label>
<input class="cf_inputbox" maxlength="150" size="30" id="text_15" name="primary_mobile_phone" type="text" />
</li>
<li><label>Work Phone</label>
<input class="cf_inputbox" maxlength="150" size="30" id="text_16" name="primary_work_phone" type="text" />
</li>
<li><label>E-mail address</label>
<input class="cf_inputbox validate-email" maxlength="150" size="30" id="text_17" name="primary_email" type="text" />
</li></ol>
<h4>Employer Information</h4>
<ol>
<li><label>Occupation</label>
<input class="cf_inputbox" maxlength="150" size="45" id="text_18" </li>
<li><label>Employer</label>
<input class="cf_inputbox" maxlength="150" size="45" id="text_19" name="primary_employer" type="text" />
</li>
<li><label>Business Street Address</label>
<textarea class="cf_inputbox" rows="2" id="text_20" cols="30" name="primary_business_street"></textarea>
</li>
<li><label>Business City</label>
<input class="cf_inputbox" maxlength="150" size="30" id="text_21" name="primary_business_city" type="text" />
</li>
<li><label>Business State</label>
<select class="cf_inputbox" id="select_6" size="1" name="primary_business_state">
<option value="">Choose Option</option>
<!--redacted to meet message character limit-->
</select>
</li>
<li><label>Business ZIP</label>
<input class="cf_inputbox" maxlength="150" size="10" id="text_22" name="primary_business_zip" type="text" />
</li></ol>
<h3>Second Parent/Guardian</h3>
<ol>
<li><label>First Name</label>
<input class="cf_inputbox required" maxlength="150" size="30" id="text_23" name="secondary_first_name" type="text" />
</li>
<li><label>Last Name</label>
<input class="cf_inputbox required" maxlength="150" size="30" id="text_24" name="secondary_last_name" type="text" />
</li></ol>
<h4>Address</h4>
<ol>
<li><label>Same as Child's Primary Address?</label>
<input value="Yes" class="radio radio" id="same_addr_as_child" name="Primary_Address_NOT_Same_as_Child_Address" type="radio" />
<label for="Yes" class="radio_label">Yes</label>
</li>
<li><input value="No; my address is listed below:" class="radio radio" id="different_addr_than_child" name="Primary_Address_NOT_Same_as_Child_Address" type="radio" />
<label for="different_addr_than_child" class="radio_label">No; my address is listed below:</label>
<label>Street</label>
<textarea class="cf_inputbox" rows="2" id="text_25" cols="30" name="secondary_street_address"></textarea></li>
<li><label>City</label>
<input class="cf_inputbox" maxlength="150" size="30" id="text_26" name="secondary_city" type="text" /></li>
<li><label>State</label>
<select class="cf_inputbox" id="select_7" size="1" name="secondary_state">
<option value="">Choose Option</option>
<option value="Alabama - AL">Alabama - AL</option>
<option value="Alaska - AK">Alaska - AK</option>
<option value="American Samoa - AS">American Samoa - AS</option>
<option value="Arizona - AZ">Arizona - AZ</option>
<option value="Arkansas - AR">Arkansas - AR</option>
<option value="California - CA">California - CA</option>
<option selected="selected" value="Colorado - CO">Colorado - CO</option>
<option value="Connecticut - CT">Connecticut - CT</option>
<option value="Delaware - DE">Delaware - DE</option>
<option value="District of Columbia - DC">District of Columbia - DC</option>
<option value="Federated States of Micronesia* - FM">Federated States of Micronesia* - FM</option>
<option value="Florida - FL">Florida - FL</option>
<option value="Georgia - GA">Georgia - GA</option>
<option value="Guam - GU">Guam - GU</option>
<option value="Hawaii - HI">Hawaii - HI</option>
<option value="Idaho - ID">Idaho - ID</option>
<option value="Illinois - IL">Illinois - IL</option>
<option value="Indiana - IN">Indiana - IN</option>
<option value="Iowa - IA">Iowa - IA</option>
<option value="Kansas - KS">Kansas - KS</option>
<option value="Kentucky - KY">Kentucky - KY</option>
<option value="Louisiana - LA">Louisiana - LA</option>
<option value="Maine - ME">Maine - ME</option>
<option value="Marshall Islands* - MH">Marshall Islands* - MH</option>
<option value="Maryland - MD">Maryland - MD</option>
<option value="Massachusetts - MA">Massachusetts - MA</option>
<option value="Michigan - MI">Michigan - MI</option>
<option value="Minnesota - MN">Minnesota - MN</option>
<option value="Mississippi - MS">Mississippi - MS</option>
<option value="Missouri - MO">Missouri - MO</option>
<option value="Montana - MT">Montana - MT</option>
<option value="Nebraska - NE">Nebraska - NE</option>
<option value="Nevada - NV">Nevada - NV</option>
<option value="New Hampshire - NH">New Hampshire - NH</option>
<option value="New Jersey - NJ">New Jersey - NJ</option>
<option value="New Mexico - NM">New Mexico - NM</option>
<option value="New York - NY">New York - NY</option>
<option value="North Carolina - NC">North Carolina - NC</option>
<option value="North Dakota - ND">North Dakota - ND</option>
<option value="Northern Mariana Islands - MP">Northern Mariana Islands - MP</option>
<option value="Ohio - OH">Ohio - OH</option>
<option value="Oklahoma - OK">Oklahoma - OK</option>
<option value="Oregon - OR">Oregon - OR</option>
<option value="Palau* - PW">Palau* - PW</option>
<option value="Pennsylvania - PA">Pennsylvania - PA</option>
<option value="Puerto Rico - PR">Puerto Rico - PR</option>
<option value="Rhode Island - RI">Rhode Island - RI</option>
<option value="South Carolina - SC">South Carolina - SC</option>
<option value="South Dakota - SD">South Dakota - SD</option>
<option value="Tennessee - TN">Tennessee - TN</option>
<option value="Texas - TX">Texas - TX</option>
<option value="Utah - UT">Utah - UT</option>
<option value="Vermont - VT">Vermont - VT</option>
<option value="Virgin Island - VI">Virgin Island - VI</option>
<option value="Virginia - VA">Virginia - VA</option>
<option value="Washington - WA">Washington - WA</option>
<option value="West Virginia - WV">West Virginia - WV</option>
<option value="Wisconsin - WI">Wisconsin - WI</option>
<option value="Wyoming - WY">Wyoming - WY</option>
</select></li>
<li><label>ZIP</label>
<input class="cf_inputbox" maxlength="150" size="10" id="text_27" name="secondary_zip" type="text" /></li>
</ol>
<h4>Phone and E-mail</h4>
<ol>
<li><label>Home Phone</label>
<input class="cf_inputbox" maxlength="150" size="30" id="text_28" name="secondary_home_phone" type="text" />
</li>
<li><label>Mobile Phone</label>
<input class="cf_inputbox" maxlength="150" size="30" id="text_29" name="secondary_mobile_phone" type="text" />
</li>
<li><label>Work Phone</label>
<input class="cf_inputbox" maxlength="150" size="30" id="text_30" name="secondary_work_phone" type="text" />
</li>
<li><label>E-mail address</label>
<input class="cf_inputbox validate-email" maxlength="150" size="29" id="text_31" name="secondary_email" type="text" />
</li></ol>
<h4>Employer Information</h4>
<ol><li>
<label>Occupation</label>
<input class="cf_inputbox" maxlength="150" size="45" id="text_32" name="secondary_occupation" type="text" />
</li>
<li><label>Employer</label>
<input class="cf_inputbox" maxlength="150" size="45" id="text_33" name="secondary_employer" type="text" />
</li>
<li><label>Business Street Address</label>
<textarea class="cf_inputbox" rows="2" id="text_34" cols="30" name="secondary_business_street"></textarea>
</li>
<li><label>Business City</label>
<input class="cf_inputbox" maxlength="150" size="30" id="text_35" name="secondary_business_city" type="text" />
</li>
<li><label>Business State</label>
<select class="cf_inputbox" id="select_8" size="1" name="secondary_business_state">
<option value="">Choose Option</option>
<option value="Alabama - AL">Alabama - AL</option>
<option value="Alaska - AK">Alaska - AK</option>
<option value="American Samoa - AS">American Samoa - AS</option>
<option value="Arizona - AZ">Arizona - AZ</option>
<option value="Arkansas - AR">Arkansas - AR</option>
<option value="California - CA">California - CA</option>
<option selected="selected" value="Colorado - CO">Colorado - CO</option>
<option value="Connecticut - CT">Connecticut - CT</option>
<option value="Delaware - DE">Delaware - DE</option>
<option value="District of Columbia - DC">District of Columbia - DC</option>
<option value="Federated States of Micronesia* - FM">Federated States of Micronesia* - FM</option>
<option value="Florida - FL">Florida - FL</option>
<option value="Georgia - GA">Georgia - GA</option>
<option value="Guam - GU">Guam - GU</option>
<option value="Hawaii - HI">Hawaii - HI</option>
<option value="Idaho - ID">Idaho - ID</option>
<option value="Illinois - IL">Illinois - IL</option>
<option value="Indiana - IN">Indiana - IN</option>
<option value="Iowa - IA">Iowa - IA</option>
<option value="Kansas - KS">Kansas - KS</option>
<option value="Kentucky - KY">Kentucky - KY</option>
<option value="Louisiana - LA">Louisiana - LA</option>
<option value="Maine - ME">Maine - ME</option>
<option value="Marshall Islands* - MH">Marshall Islands* - MH</option>
<option value="Maryland - MD">Maryland - MD</option>
<option value="Massachusetts - MA">Massachusetts - MA</option>
<option value="Michigan - MI">Michigan - MI</option>
<option value="Minnesota - MN">Minnesota - MN</option>
<option value="Mississippi - MS">Mississippi - MS</option>
<option value="Missouri - MO">Missouri - MO</option>
<option value="Montana - MT">Montana - MT</option>
<option value="Nebraska - NE">Nebraska - NE</option>
<option value="Nevada - NV">Nevada - NV</option>
<option value="New Hampshire - NH">New Hampshire - NH</option>
<option value="New Jersey - NJ">New Jersey - NJ</option>
<option value="New Mexico - NM">New Mexico - NM</option>
<option value="New York - NY">New York - NY</option>
<option value="North Carolina - NC">North Carolina - NC</option>
<option value="North Dakota - ND">North Dakota - ND</option>
<option value="Northern Mariana Islands - MP">Northern Mariana Islands - MP</option>
<option value="Ohio - OH">Ohio - OH</option>
<option value="Oklahoma - OK">Oklahoma - OK</option>
<option value="Oregon - OR">Oregon - OR</option>
<option value="Palau* - PW">Palau* - PW</option>
<option value="Pennsylvania - PA">Pennsylvania - PA</option>
<option value="Puerto Rico - PR">Puerto Rico - PR</option>
<option value="Rhode Island - RI">Rhode Island - RI</option>
<option value="South Carolina - SC">South Carolina - SC</option>
<option value="South Dakota - SD">South Dakota - SD</option>
<option value="Tennessee - TN">Tennessee - TN</option>
<option value="Texas - TX">Texas - TX</option>
<option value="Utah - UT">Utah - UT</option>
<option value="Vermont - VT">Vermont - VT</option>
<option value="Virgin Island - VI">Virgin Island - VI</option>
<option value="Virginia - VA">Virginia - VA</option>
<option value="Washington - WA">Washington - WA</option>
<option value="West Virginia - WV">West Virginia - WV</option>
<option value="Wisconsin - WI">Wisconsin - WI</option>
<option value="Wyoming - WY">Wyoming - WY</option>
</select>
</li>
<li><label>Business ZIP</label>
<input class="cf_inputbox" maxlength="150" size="10" id="text_36" name="secondary_business_zip" type="text" />
</li></ol></fieldset>
<fieldset>
<legend>Medical and Dental Information</legend>
<h3>Child's Physician</h3>
<ol><li><label>Physician Name</label>
<input class="cf_inputbox" maxlength="150" size="45" id="text_37" name="physician_name" type="text" />
</li>
<li><label>Physician Street Address</label>
<textarea class="cf_inputbox" rows="3" id="text_38" cols="30" name="physician_street"></textarea>
</li>
<li><label>Physician City</label>
<input class="cf_inputbox" maxlength="150" size="30" id="text_39" name="physician_city" type="text" />
</li>
<li><label>Physician State</label>
<select class="cf_inputbox" id="select_9" size="1" name="physician_state">
<option value="">Choose Option</option>
<option value="Alabama - AL">Alabama - AL</option>
<option value="Alaska - AK">Alaska - AK</option>
<option value="American Samoa - AS">American Samoa - AS</option>
<option value="Arizona - AZ">Arizona - AZ</option>
<option value="Arkansas - AR">Arkansas - AR</option>
<option value="California - CA">California - CA</option>
<option selected="selected" value="Colorado - CO">Colorado - CO</option>
<option value="Connecticut - CT">Connecticut - CT</option>
<option value="Delaware - DE">Delaware - DE</option>
<option value="District of Columbia - DC">District of Columbia - DC</option>
<option value="Federated States of Micronesia* - FM">Federated States of Micronesia* - FM</option>
<option value="Florida - FL">Florida - FL</option>
<option value="Georgia - GA">Georgia - GA</option>
<option value="Guam - GU">Guam - GU</option>
<option value="Hawaii - HI">Hawaii - HI</option>
<option value="Idaho - ID">Idaho - ID</option>
<option value="Illinois - IL">Illinois - IL</option>
<option value="Indiana - IN">Indiana - IN</option>
<option value="Iowa - IA">Iowa - IA</option>
<option value="Kansas - KS">Kansas - KS</option>
<option value="Kentucky - KY">Kentucky - KY</option>
<option value="Louisiana - LA">Louisiana - LA</option>
<option value="Maine - ME">Maine - ME</option>
<option value="Marshall Islands* - MH">Marshall Islands* - MH</option>
<option value="Maryland - MD">Maryland - MD</option>
<option value="Massachusetts - MA">Massachusetts - MA</option>
<option value="Michigan - MI">Michigan - MI</option>
<option value="Minnesota - MN">Minnesota - MN</option>
<option value="Mississippi - MS">Mississippi - MS</option>
<option value="Missouri - MO">Missouri - MO</option>
<option value="Montana - MT">Montana - MT</option>
<option value="Nebraska - NE">Nebraska - NE</option>
<option value="Nevada - NV">Nevada - NV</option>
<option value="New Hampshire - NH">New Hampshire - NH</option>
<option value="New Jersey - NJ">New Jersey - NJ</option>
<option value="New Mexico - NM">New Mexico - NM</option>
<option value="New York - NY">New York - NY</option>
<option value="North Carolina - NC">North Carolina - NC</option>
<option value="North Dakota - ND">North Dakota - ND</option>
<option value="Northern Mariana Islands - MP">Northern Mariana Islands - MP</option>
<option value="Ohio - OH">Ohio - OH</option>
<option value="Oklahoma - OK">Oklahoma - OK</option>
<option value="Oregon - OR">Oregon - OR</option>
<option value="Palau* - PW">Palau* - PW</option>
<option value="Pennsylvania - PA">Pennsylvania - PA</option>
<option value="Puerto Rico - PR">Puerto Rico - PR</option>
<option value="Rhode Island - RI">Rhode Island - RI</option>
<option value="South Carolina - SC">South Carolina - SC</option>
<option value="South Dakota - SD">South Dakota - SD</option>
<option value="Tennessee - TN">Tennessee - TN</option>
<option value="Texas - TX">Texas - TX</option>
<option value="Utah - UT">Utah - UT</option>
<option value="Vermont - VT">Vermont - VT</option>
<option value="Virgin Island - VI">Virgin Island - VI</option>
<option value="Virginia - VA">Virginia - VA</option>
<option value="Washington - WA">Washington - WA</option>
<option value="West Virginia - WV">West Virginia - WV</option>
<option value="Wisconsin - WI">Wisconsin - WI</option>
<option value="Wyoming - WY">Wyoming - WY</option>
</select>
</li>
<li><label>Physician ZIP</label>
<input class="cf_inputbox" maxlength="150" size="10" id="text_40" name="physician_zip" type="text" />
</li></ol>
<h3>Child's Dentist</h3>
<p><i>If you do not have a dentist for your child yet, please list your dentist’s name in case there is an
emergency. </i></p>
<ol><li><label>Dentist Name</label>
<input class="cf_inputbox" maxlength="150" size="45" id="text_41" name="Dentist_name" type="text" />
</li>
<li><label>Dentist Street Address</label>
<textarea class="cf_inputbox" rows="3" id="text_42" cols="30" name="Dentist_street"></textarea>
</li>
<li><label>Dentist City</label>
<input class="cf_inputbox" maxlength="150" size="30" id="text_43" name="Dentist_city" type="text" />
</li>
<li><label>Dentist State</label>
<select class="cf_inputbox" id="select_10" size="1" name="Dentist_state">
<option value="">Choose Option</option>
<option value="Alabama - AL">Alabama - AL</option>
<option value="Alaska - AK">Alaska - AK</option>
<option value="American Samoa - AS">American Samoa - AS</option>
<option value="Arizona - AZ">Arizona - AZ</option>
<option value="Arkansas - AR">Arkansas - AR</option>
<option value="California - CA">California - CA</option>
<option selected="selected" value="Colorado - CO">Colorado - CO</option>
<option value="Connecticut - CT">Connecticut - CT</option>
<option value="Delaware - DE">Delaware - DE</option>
<option value="District of Columbia - DC">District of Columbia - DC</option>
<option value="Federated States of Micronesia* - FM">Federated States of Micronesia* - FM</option>
<option value="Florida - FL">Florida - FL</option>
<option value="Georgia - GA">Georgia - GA</option>
<option value="Guam - GU">Guam - GU</option>
<option value="Hawaii - HI">Hawaii - HI</option>
<option value="Idaho - ID">Idaho - ID</option>
<option value="Illinois - IL">Illinois - IL</option>
<option value="Indiana - IN">Indiana - IN</option>
<option value="Iowa - IA">Iowa - IA</option>
<option value="Kansas - KS">Kansas - KS</option>
<option value="Kentucky - KY">Kentucky - KY</option>
<option value="Louisiana - LA">Louisiana - LA</option>
<option value="Maine - ME">Maine - ME</option>
<option value="Marshall Islands* - MH">Marshall Islands* - MH</option>
<option value="Maryland - MD">Maryland - MD</option>
<option value="Massachusetts - MA">Massachusetts - MA</option>
<option value="Michigan - MI">Michigan - MI</option>
<option value="Minnesota - MN">Minnesota - MN</option>
<option value="Mississippi - MS">Mississippi - MS</option>
<option value="Missouri - MO">Missouri - MO</option>
<option value="Montana - MT">Montana - MT</option>
<option value="Nebraska - NE">Nebraska - NE</option>
<option value="Nevada - NV">Nevada - NV</option>
<option value="New Hampshire - NH">New Hampshire - NH</option>
<option value="New Jersey - NJ">New Jersey - NJ</option>
<option value="New Mexico - NM">New Mexico - NM</option>
<option value="New York - NY">New York - NY</option>
<option value="North Carolina - NC">North Carolina - NC</option>
<option value="North Dakota - ND">North Dakota - ND</option>
<option value="Northern Mariana Islands - MP">Northern Mariana Islands - MP</option>
<option value="Ohio - OH">Ohio - OH</option>
<option value="Oklahoma - OK">Oklahoma - OK</option>
<option value="Oregon - OR">Oregon - OR</option>
<option value="Palau* - PW">Palau* - PW</option>
<option value="Pennsylvania - PA">Pennsylvania - PA</option>
<option value="Puerto Rico - PR">Puerto Rico - PR</option>
<option value="Rhode Island - RI">Rhode Island - RI</option>
<option value="South Carolina - SC">South Carolina - SC</option>
<option value="South Dakota - SD">South Dakota - SD</option>
<option value="Tennessee - TN">Tennessee - TN</option>
<option value="Texas - TX">Texas - TX</option>
<option value="Utah - UT">Utah - UT</option>
<option value="Vermont - VT">Vermont - VT</option>
<option value="Virgin Island - VI">Virgin Island - VI</option>
<option value="Virginia - VA">Virginia - VA</option>
<option value="Washington - WA">Washington - WA</option>
<option value="West Virginia - WV">West Virginia - WV</option>
<option value="Wisconsin - WI">Wisconsin - WI</option>
<option value="Wyoming - WY">Wyoming - WY</option>
</select>
</li>
<li><label>Dentist ZIP</label>
<input class="cf_inputbox" maxlength="150" size="10" id="text_44" name="Dentist_zip" type="text" />
</li></ol>
<h3>Hospital</h3>
<ol><li><label>Please specify your hospital of choice:</label><input class="cf_inputbox" maxlength="150" size="45" id="text_45" name="hospital" type="text" /></li></ol>
<h3>Allergies, Medical Problems, and Special Needs</h3>
<ol><li><label>Does your child have any allergies or medical problems?</label>
<input value="Yes" class="radio radio" id="allergies_or_medical_issues" name="allergies_medical" type="radio" />
<label for="allergies_or_medical_issues" class="radio_label">Yes</label>
</li>
<li><label>If Yes, please explain:</label><input class="cf_inputbox" maxlength="150" size="45" id="text_46" name="allergies_or_medical_problems" type="text" /></li>
<li><input value="No" class="radio radio" id="No" name="allergies_medical" type="radio" />
<label for="No" class="radio_label">No</label></li>
<li><label>Has your child had chicken pox or received the chicken pox vaccine (or will have by enrollment date)?</label>
<input value="Yes" class="radio radio" id="chicken_pox_or_vaccine" name="chicken_pox" type="radio" />
<label for="chicken_pox_or_vaccine" class="radio_label">Yes</label>
</li>
<li><input value="No" class="radio radio" id="No_chicken_pox_or_vaccine" name="chicken_pox" type="radio" />
<label for="No_chicken_pox_or_vaccine" class="radio_label">No</label></li>
<li><label>Please note any special needs your child has, such as food allergies, assistance using the bathroom, etc.:</label><textarea class="cf_inputbox" rows="4" id="text_47" cols="42" name="special_needs"></textarea></li></ol>
<h3>Potty Training</h3>
<p><strong>For children enrolling in the Polliwogs or Frogs class only:</strong></p>
<ol><li><label>Is your child potty trained – or will be by enrollment date? </label>
<input value="Yes" class="radio radio" id="potty_trained" name="potty_trained" type="radio" />
<label for="potty_trained" class="radio_label">Yes</label>
</li>
<li><input value="No" class="radio radio" id="Not_potty_trained" name="potty_trained" type="radio" />
<label for="Not_potty_trained" class="radio_label">No</label></li>
<li><label>Comments:</label><input class="cf_inputbox" maxlength="150" size="45" id="text_48" name="potty_training_comments" type="text" /></li>
<li><label>Are you currently working on potty training?</label>
<input value="Yes" class="radio radio" id="working_on_potty_training" name="working_on_potty_training" type="radio" />
<label for="working_on_potty_training" class="radio_label">Yes</label>
</li>
<li><input value="No" class="radio radio" id="Not_working_on_potty_training" name="working_on_potty_training" type="radio" />
<label for="Not_working_on_potty_training" class="radio_label">No</label></li>
<li><label>Comments:</label><input class="cf_inputbox" maxlength="150" size="45" id="text_49" name="potty_training_comments" type="text" /></li></ol>
</fieldset>
<fieldset>
<legend>Form Submission</legend>
<p>Please review the form prior to submission to make sure you've filled out all the information correctly. If you attempt to submit the form without required information, you will be directed to complete the form before re-submitting. You will receive an e-mail copy of the form (sent to the Primary Parent/Guardian's e-mail address) as confirmation of successful submittal. The form data will be stored in the school's database and submitted via e-mail to the enrollment coordinator.</p>
<div class="form_item">
<div class="form_element cf_captcha">
<label class="cf_label">Please copy the image text in the box to verify you're not a spambot:</label>
<span>{imageverification}</span>
</div>
<input value="Submit" type="submit" /> <input value="Reset" type="reset" />
<div class="clear">Â </div>
</div>
</fieldset>
Ok: I found some malformed code in my form, which seems to have been causing the problem. Closing an
I think the upshot of all this is if your form code isn't perfect, you'll have issues in the Form Management Editing tabs...one nice feature to think of for a future release might be a validator of some sort that would check any code in the Form HTML field, perhaps, so if you're cutting and pasting code into the tool you can quickly assess if it's compliant.
<input />
tag seems to have solved it!I think the upshot of all this is if your form code isn't perfect, you'll have issues in the Form Management Editing tabs...one nice feature to think of for a future release might be a validator of some sort that would check any code in the Form HTML field, perhaps, so if you're cutting and pasting code into the tool you can quickly assess if it's compliant.
Glad you fixed it and thanks for the suggestion, I will add it to the todo list!
Cheers
Max
Cheers
Max
This topic is locked and no more replies can be posted.