Details
Description
No matter what "Row Count" I choose in Manage | Reports, I get the error message "Row count must be between 10 and 5000.". After disabling JavaScript, which disables the client-side validation, it works.
I tracked it down to the following line in the JavaScript function validateForm_generateReport() that is included into the pickReport page
508 if (parseInt(field.value) <
509 10 ||
510 parseInt(field.value) >
511 5.000) {
The problem is the decimal point in the number "5.000". At least on my system, this is interpreted as "5", not "5000".
Please look what I've found at https://issues.apache.org/struts/browse/WW-1937