Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Incomplete
-
2.0.11
-
None
-
windows XP
tomcat6
struts 2.0.11
Description
when I set the max value bigger than 999,
the client validation will not work.
my suggestion:
line 95 ${validator.min?string}<#else>false</#if> ||
...
line 97 ${validator.max?string }<#else>false</#if>) {
....
change to :
line 95 ${validator.min?c}<#else>false</#if> ||
...
line 97 ${validator.max?c}<#else>false</#if>) {
....