In my Vaadin web application I need to display 10,000+ user Information in a Table(or Grid) . The User information displaying in UI is retrieved from our own Spring REST web Service.
How Can I achieve this? ...
Thanks
In my Vaadin web application I need to display 10,000+ user Information in a Table(or Grid) . The User information displaying in UI is retrieved from our own Spring REST web Service.
How Can I achieve this? ...
Thanks
Steps: 1. Read the list of users from your REST service. 2. Created a GRID and attache the BeamItemContainer of User to it.
Grid will take care of displaying the users. You don't have to do anything special for lazy loading. grid will take care of it by displaying only required rows on UI and fetching it lazily at component level.
P.S : Grid is very smooth while loading the data on scroll than table. If you have too many rows prefer grid over table.