Possible Bug in FieldChecks.validateRequiredIf(...)

2003-06-04 Thread Bradley M. Handy
I sent this once before, but with the wrong email account. If this gets posted twice, I'm sorry. I have a validation that should be failing (under certain conditions), but is not. I've double checked and triple checked to make sure the setup is correct, and it's still not working correctly.

Re: Possible Bug in FieldChecks.validateRequiredIf(...)

2003-06-04 Thread David Graham
Thanks for catching this! Please file a bug report so we don't forget to fix it. Thanks, David I have a validation that should be failing (under certain conditions), but is not. I've double checked and triple checked to make sure the setup is correct, and it's still not working correctly. So,

RE: Possible Bug in FieldChecks.validateRequiredIf(...)

2003-06-04 Thread Kruse, Matt
Am I correct in assuming that the following condition ((value != null) (value.length() 0)) should be (!GenericValidator.isBlankOrNull(value)). The reason my check is failing is due to the fact the value I'm checking is all white space (at certain times), and is selected from a select

RE: [struts-user] RE: Possible Bug in FieldChecks.validateRequiredIf(...)

2003-06-04 Thread Bradley M. Handy
:[EMAIL PROTECTED] Sent: Tuesday, June 03, 2003 12:03 PM To: Struts Users Mailing List Subject: [struts-user] RE: Possible Bug in FieldChecks.validateRequiredIf(...) Am I correct in assuming that the following condition ((value != null) (value.length() 0)) should

RE: [struts-user] RE: Possible Bug in FieldChecks.validateRequiredIf(...)

2003-06-04 Thread Bradley M. Handy
:[EMAIL PROTECTED] Sent: Tuesday, June 03, 2003 12:03 PM To: Struts Users Mailing List Subject: [struts-user] RE: Possible Bug in FieldChecks.validateRequiredIf(...) Am I correct in assuming that the following condition ((value != null) (value.length() 0)) should