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.
So, I took a look at the code for "validateRequiredIf" in the
"org.apache.struts.validator.FieldChecks" class. At the end of the
method I found this segment of code:
if (required) {
if ((value != null) && (value.length() > 0)) {
return true;
} else {
errors.add(field.getKey(), Resources.getActionError(request, va,
field));
return false;
}
}
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 box.
Brad Handy
-------------------------------------------------
Bradley M. Handy | Office: 517 750 6675
Programmer/Analyst | Email: [EMAIL PROTECTED]
Spring Arbor University |
-------------------------------------------------
Sun Certified Programmer for the Java 2 Platform
-------------------------------------------------
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]