Thank you, Frank, I was indeed missing the "validation='true'" but that
didn't seem to fix my problem... must be something else; I guess I've got to
keep digging.

Nina  

-----Ursprungligt meddelande-----
Från: Otto, Frank [mailto:[EMAIL PROTECTED] 
Skickat: den 15 mars 2004 11:13
Till: 'Struts Users Mailing List'
Ämne: AW: Form Validation

Hi Nina,

you had to set validation="true" in your action definition
(struts-config.xml).


Regards,

Frank

-----Ursprungliche Nachricht-----
Von: Nina Bertilsdotter [mailto:[EMAIL PROTECTED]
Gesendet: Montag, 15. Marz 2004 11:09
An: 'Struts Users Mailing List'
Betreff: Form Validation


Hi People,
I'm pulling my hair out trying to get form validation to work through the
validator, any help will be much appreciated.  In this example I'm trying to
validate a single field ("year" of type int), should be pretty easy, one
might think, but alas, I'm stuck and I can't get it to work. I'm sure it is
something simple but I've gone blind from looking at it. Thanks.
 
JSP:
<html:form action="MyAction.do">
<html:errors/>
<html:text property="year"/>
 
Struts-config:
 
<form-beans>
        <form-bean  name="myForm" type="myForm"/>
</form-beans>
<action   path="MyAction "
              type="packageName/MyAction"
              scope="request"
              name="myForm"
              input="myPage.jsp ">
        <forward name="success" path="myPage.jsp"/> 
</action>
 
Validation.xml:
 
<form name="MyAction"> 
          <field property="year" depends="required,integer,intRange">
                <arg0 key="MyAction.year"/>
                <arg1 name="intRange" key="${var:min}" resource="false"/>
                <var>
                    <var-name>min</var-name>
                    <var-value>1900</var-value>
                </var>
           </field>             
</form>
 
 
 

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to