vue-virtual-scroller
vue-virtual-scroller copied to clipboard
overflow: auto; breaks page-mode
trafficstars
Gave me a lot of headaches, finally figured out why pagemode isn't working for me...
- Go to Demo Page
- Activate page-mode
- See that it is working
- Update HTML: (
Inspect > Elements > Edit as HTML)- FROM: div id="app">
- TO THIS: div id="app" style="position: fixed; overflow: auto;"> // my situation
- OR THIS: div id="app" style="position: absolute; overflow: auto;">
- OR THIS: div id="app" style="overflow: auto;">
- See that scroller only loads first few items.
I'm reporting this issue hoping for a fix or explanation:
- Use a new property, i.e. scrolling-container:"#app"
- Or how should we apply overflow on page-mode?
same problem
I'm also having the same problem, but with overflow: visible since I need the virtual scroller to be scrollable horizontally for long rows of data