Yes, no matter what I enter, nothing happends at all. It just accepts whatever I enter, or leave blank, and submits just fine.



---
Thanks...
Mick Knutson
---





From: Kevin Robair <[EMAIL PROTECTED]>
Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
To: Struts Users Mailing List <[EMAIL PROTECTED]>
Subject: Re: requiredif question
Date: Wed, 25 Jun 2003 10:20:35 -0700 (PDT)

Just a hunch:

For Struts 1.1RC1 , the varnames should be:

field-test[x]
field-join
etc...

In 1.1RC2, they are

fieldTest[n]
fieldJoin
etc....

BTW, I am unsure what you mean by:

"does not seem to operate at all"

Are there any errors or exceptions in the log? If the form validates no
matter what you enter, and there are no errors in the log, then it is
possibly a configuration problem. You could try a simpler validation, in
place of this one just to make sure it is doing something. Then, remove
the NOTNULL check, and see if the NOTEQUAL alone works.

-Kevin

--- Mick Knutson <[EMAIL PROTECTED]> wrote:
> I have the following code that does not seem to operate at all.
>
> I want phone1type to be a required field _if_ the phone1 attribute is
> _not_
> ""
>
>             <field  property="phone1type"
>                     depends="requiredif">
>                 <arg0 key="form.phone1type"/>
>                 <var>
>                     <var-name>field[0]</var-name>
>                     <var-value>phone1</var-value>
>                 </var>
>                 <var>
>                     <var-name>fieldTest[0]</var-name>
>                     <var-value>NOTNULL</var-value>
>                 </var>
>                 <var>
>                     <var-name>field[1]</var-name>
>                     <var-value>phone1</var-value>
>                   </var>
>                   <var>
>                     <var-name>fieldTest[1]</var-name>
>                     <var-value>NOTEQUAL</var-value>
>                   </var>
>                   <var>
>                     <var-name>fieldValue[1]</var-name>
>                     <var-value> </var-value>
>                   </var>
>                   <var>
>                     <var-name>fieldJoin</var-name>
>                     <var-value>OR</var-value>
>                 </var>
>             </field>
>
>
>
>
> ---
> Thanks...
> Mick Knutson
> ---
>
> _________________________________________________________________
> Tired of spam? Get advanced junk mail protection with MSN 8.
> http://join.msn.com/?page=features/junkmail
>
>
> ---------------------------------------------------------------------
> 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]


_________________________________________________________________
Tired of spam? Get advanced junk mail protection with MSN 8. http://join.msn.com/?page=features/junkmail



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



Reply via email to