Table scroll issue. How to scroll to the last item

Same problem like this https://vaadin.com/forum#!/thread/1583007

When the data in the table beyond the cureent screen, the scroll bar(vertical) will show. But how can I show the latest rows in the current screen? I use the table.select, but it doesn’t work. I’m a newer to Vaadin, Thank you for your help.

I try

    table.select(itemId);
    table.setCurrentPageFirstItemId(itemId);

and put the table inside a Panel and then

panel.scrollToTop(1000000) and doesn’t work.

I think this would be simple to do, but it seems impossilble. Any help??