3

After selecting an item programmatically I want to scroll to them.

How can I scroll to selected item programmatically in Vaadin 10?

I did not found any method to do this.

Son Truong
  • 13,661
  • 5
  • 32
  • 58
user1167253
  • 813
  • 1
  • 11
  • 27

1 Answers1

4

This feature has not been implemented yet, there is feature request here

https://github.com/vaadin/vaadin-grid-flow/issues/289

But it is possible to do this with JavaScript call, e.g. like this

UI.getCurrent().getPage().executeJavaScript("$0._scrollToIndex($1)", grid, row)

Threre is more discussion here: https://vaadin.com/forum/thread/17215099

Tatu Lund
  • 9,949
  • 1
  • 12
  • 26