Hi,
I've sucessfully got the commons validator working with my web app, however I've noticed that the client side error messages being displayed are not locale specific.
JavascriptValidatorTag.java fetches the locale from the request:
Since this doesn't always pickup the correct locale, it's worth changing this to:Code:Locale locale = pageContext.getRequest().getLocale();
See http://forum.springframework.org/showthread.php?t=17030Code:RequestContextUtils.getLocale((HttpServletRequest) pageContext.getRequest());
jv


