I'm having trouble with the struts form validation framework when it comes to radio buttons and checkboxes. For some reason, I can validate any other type of field, but not radios/checkboxes. Here's where I seem to be having trouble:
In the struts-config.xml file, should the form-property type be set to java.lang.String or java.lang.Boolean? In the page with the form, does it look right to create the radio buttons like this: <html:form ......> <html:radio property="activity" value="a" /> <html:radio property="activity" value="b" /> <html:radio property="activity" value="c" /> </html:form> Are there any other tricks to doing this that differs from validating standard text boxes, textareas, etc.? Thank in advance. Greg Amaroso --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

