Hi, I am trying to integrate valang validation, however, I can't make use of function in error_parameters.
this valang rule gives exception:Code:{ name : ? is not blank : 'name is required' : 'errors.required' : resolve('label.username') }
however, I do something likeCode:org.springmodules.validation.valang.parser.ParseException: Encountered "}" at line 3, column 142. Was expecting: "," ...
and valang works flawlessly, although the errors.required only requires one parameter, i.e.Code:{ name : ? is not blank : 'name is required' : 'errors.required' : resolve('label.username') }
Is there anyone able to use function in error_parameters that can point me out what I have done wrongly ? I read the Spring module reference manual and didn't find example about function in error_parameters. Thanks.Code:errors.required={0} is mandatory
P.S. I am using Spring Framework 2.0RC4 + Spring modules 0.6


