Category: | Bug report |
Priority: | Urgent |
Status: | New |
Project: | Severity: | Block |
Resolution: | Open |
|
Component: | Reproducibility: | Random |
Assigned to: |
I've recently started getting this error (see stacktrace below in additional information section) when browsing and viewing our canned reports. We use JasperServer 4.5.0 and this happens on both installations - local Windows 7 and production CentOs 5. Loging in and out usually makes this problem go away for some time. Then it's back again. This happens multiple time a day.
5 Comments:
I see this too. It seems to happen when I use the browsers own back button instead of clicking on the back button that the app provides in the upper right corner. The browsers back-button makes the app loose track of the conversion.
Guys, any updated on this. Our users keep complaining about this error.
Hi.
I'v found the cause of the problem and a simple work-around.
http://stackoverflow.com/questions/4025843/chrome-doesnt-cache-hidden-fo...
"Chrome doesn't cache hidden form field values for use in browser history."
The quick and dirty solution would be to replace
type="hidden"
with
style="visibility:hidden;"
in all your jsp files in WEB-INF/jsp
And your users become happy.
--
With best regards,
Anton
Thank you for the workaround zensey! We'll give it a try. Is this also something that can be fixed in the next release of the Jasper Server?
A little update.
using style="visibility:hidden;" skews original layout.
so use style="display:none" instead.