Hi,
I've got a form located here:
http://www.kimtindallandassociates.com/request
A little ways down the page is a radio group under the heading "Representing":
My problem is that the while the form is successfully requiring the selection of one of the radios, it's not displaying any error message to the user if it's skipped over. The ten fields above the radio group are properly displaying error messages. It's something about the radio group. And I'm having the same problem with the check boxes under "Instructions".
Thanks for any help you can provide. I'll be buying you a beer on this one : )
I've got a form located here:
http://www.kimtindallandassociates.com/request
A little ways down the page is a radio group under the heading "Representing":
<table width="600" border="0" cellspacing="3" cellpadding="3">
<tr>
<td width="190"><input type="radio" name="representing" id="representing_plaintiff" title="" value="Plaintiff" class="validate['required']">
<label for="representing_plaintiff">Plaintiff</label></td>
<td><div class="ccms_form_element cfdiv_text" id="plaintiff_container_div"><input maxlength="150" size="30" class="" title="" type="text" value="" name="plaintiff" />
<div class="clear"></div><div id="error-message-representing"></div></div></td>
</tr>
<tr>
<td><input type="radio" name="representing" id="representing_defendant" title="" value="Defendant" class="validate['required']">
<label for="representing_defendant">Defendant</label></td>
<td><div class="ccms_form_element cfdiv_text" id="plaintiff_container_div"><input maxlength="150" size="30" class="" title="" type="text" value="" name="defendant" />
<div class="clear"></div><div id="error-message-representing"></div></div></td>
</tr>
<tr>
<td><input type="radio" name="representing" id="representing_other" title="" value="Other" class="validate['required']">
<label for="representing_other">Other</label></td>
<td><div class="ccms_form_element cfdiv_text" id="plaintiff_container_div"><input maxlength="150" size="30" class="" title="" type="text" value="" name="other" />
<div class="clear"></div><div id="error-message-representing"></div></div></td>
</tr>
</table>
My problem is that the while the form is successfully requiring the selection of one of the radios, it's not displaying any error message to the user if it's skipped over. The ten fields above the radio group are properly displaying error messages. It's something about the radio group. And I'm having the same problem with the check boxes under "Instructions".
Thanks for any help you can provide. I'll be buying you a beer on this one : )