Reputation: 194
I want to load a grid all of the items, but vaadin grid loads items lazily. I want to use some of the browser capabilities, but i cant show all of the items in a grid.
Upvotes: 2
Views: 1780
Reputation: 2456
Try setting the pageLength to 0. That should disable paging. Maybe setting the pageLength to the number of elements could also help.
I had similar and more requirements and wrote my own add-on called PMTable It does not use paging, but some features do not exist and some are not tested.
Upvotes: 2