Common scrollbar for multple tables in vaadin 8

Hi,

My requirement is to have a common scrollbar for multiple tables. When i move the scrollbar all tables should scroll together. Is this possible in Vaadin 8 ? If yes then please suggest some ways to implement this.

One possibility is wrapping all of the tables in a Panel and making the tables high enough to contain all the rows. This of course means that you’ll need to load all of the rows into the browser immediately, which is a bad idea performance-wise if you have a lot of rows.