How to get a grid like QTable with new QVirtualScroll?
-
QTable has
:grid="$q.screen.xs"
for making it responsive stack vertically when on mobile. How can i do the same thing with QVirtualScroll?Original QVirtualScroll codepen
https://codepen.io/pen/?&editable=true&editors=111 -
@user98034h - You can’t unfortunately. At least not as you are thinking. QVirtualScroll is only using QMarkupTable, which doesn’t have that feature. You should be able to design something similar with the slot given on your own though.
Scott
-
@user98034h you can style it, but you’ll have to take care of how your items are populated https://codepen.io/metalsadman/pen/mdbXWwp.
-
@metalsadman awesome pen. can you PR it to docs pls?