Important Notice - Forums is archived
To simplify things and help our users to be more productive, we have archived the current forum and focus our efforts on helping developers on Stack Overflow. You can post new questions on Stack Overflow or join our Discord channel.

Vaadin lets you build secure, UX-first PWAs entirely in Java.
Free ebook & tutorial.
How to implement bottom scroll event on Table
Hi!
I would like to implement and event which will be fired when I scroll to the bottom on a table. The idea is load some results in the table and the rest of the result will be added on the scroll events.
I know there are some solutions with JPAContainer, but I'm not using it. I would like to implement something using just vaadin table.
I have been trying the solutions wich overrides changeVariables method but is not working for me with scroll events, just with other events:
@Override
public void changeVariables(Object source, Map<String, Object> variables) {
super.changeVariables(source, variables);
fireSrollEvent();
}
Source: http://stackoverflow.com/questions/21805532/how-to-implement-scroll-listener-in-vaadin-7-tables
Any possible solution? I can use any version of Vaadin