vue-virtual-scroller icon indicating copy to clipboard operation
vue-virtual-scroller copied to clipboard

Is it possible to achieve `virtual grid`?

Open ZKHelloworld opened this issue 4 years ago • 1 comments

We have a big table that we want to implement both horizontal and vertical scrolling. The same like react-virtualized grid.

I look through the document, and not sure if it's possible to implement. Cause all the xxScroll seem like to support one direction only?

Thanks

ZKHelloworld avatar Jun 25 '20 01:06 ZKHelloworld

You can get horizontal scrolling using css : ::v-deep .vue-recycle-scroller__item-wrapper { overflow: auto; }

frufin avatar Mar 07 '22 22:03 frufin

To avoid duplicate vertical scrollbars in certain scenarios:

::v-deep .vue-recycle-scroller__item-wrapper { overflow-x: auto; }

cwilby avatar Nov 04 '22 00:11 cwilby

Grid mode is now implemented

Akryum avatar Dec 14 '22 09:12 Akryum