I've found a bug in JavascriptValidatorTag.java. (Nightly build 2004/02/23)
I use this tag in one of my jsp pages: <html:javascript dynamicJavascript="false" staticJavascript="true"/>
Now the JavascriptValidatorTag crashes with this error message: javax.servlet.jsp.JspException: No form found under name null, locale de_CH
The error occurs on line 381. There is a null check for the form attribute. But there is no need for a form when you just want the static part of the validator javascript code.
if (form == null)
{
throw new JspException("No form found under name "
+ formName
+ ", locale "
+ locale);
}Regards Ralph
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
