problem with ActionForm object

2002-07-23 Thread Thomas Praschl
Hi, I have a simple form on my jsp page. In my ActionForm class I validate whether a checkbox was clicked or not. If the checkbox was not clicked an error is returned and displayed on the same jsp-page. This works fine but: Some (not all!) of the properties which were given by the user are not

Re: problem with ActionForm object

2002-07-23 Thread Jean-Baptiste Onofré
Your ActionForm contains all accessors to the fields of html form ? For exemple, if you have a text field name things, you must have a attributes String things in your ActionForm. Do you use the tag html:form or directly the html form tag ? -- Jean-Baptiste Onofré (Nanthrax) Membre fondateur

Re: problem with ActionForm object

2002-07-23 Thread Thomas Praschl
[EMAIL PROTECTED] - Original Message - From: Jean-Baptiste Onofré [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Tuesday, July 23, 2002 2:15 PM Subject: Re: problem with ActionForm object Your ActionForm contains all accessors to the fields of html form