Vaadin version 7.7.7
Browser version Chrome 56 and newer.
How to reproduce
Working example http://178.236.245.251:8383/tabletest/
Source code:
vaadin-app.zip
I'm also seeing this on Vaadin 6.x and Vaadin 7.x
Struggling to make sense of their issue tracking but it looks like maybe
https://bugs.chromium.org/p/chromium/issues/detail?id=687061
can someone from vaadin team investigate this issue?
I forced my users to use firefox.
Having this problem with Vaadin 6.8.15 and 8.0.6 on Chromium 58.0.3029.110
Both versions look good on Firefox 53.0.3
Struggling to make sense of their issue tracking but it looks like maybe
https://bugs.chromium.org/p/chromium/issues/detail?id=687061
The bug @rubberony found seems to have been fixed in the latest Chrome (but the bug still persists for me). I'd rather not have to make my users switch their preferred browser.
We had a similar problem with Table. It was caused by Chrome's "scroll anchoring" feature, which is enabled by default since Chrome 56. We solved it by adding the following rule to our CSS:
.v-table, .v-table * {
overflow-anchor: none;
}
@gWestenberger Nice one! This appears to work. I did find find a chrome issue that explains this. Sorry about the previous one guys.
https://bugs.chromium.org/p/chromium/issues/detail?id=594886
@gWestenberger We can not express how we happy about this! Thank you very much!
Hello there!
It looks like this issue hasn't progressed lately. There are so many issues that we just can't deal them all within a reasonable timeframe.
There are a couple of things you could help to get things rolling on this issue (this is an automated message, so expect that some of these are already in use):
Thanks again for your contributions! Even though we haven't been able to get this issue fixed, we hope you to report your findings and enhancement ideas in the future too!
Most helpful comment
We had a similar problem with Table. It was caused by Chrome's "scroll anchoring" feature, which is enabled by default since Chrome 56. We solved it by adding the following rule to our CSS:
.v-table, .v-table * { overflow-anchor: none; }