Equivalent of scrollIntoView(component) in Vaadin Flow?

In Vaadin Framework, UI has the method scrollIntoView(component).
So one could do UI.getCurrent().scrollIntoView(component) to scroll to a component.

In Vaadin Flow, UI does not have the method scrollIntoView(component).
So how does one scroll to a component in a page in Vaadin Flow?

Hi,

component.getElement().callFunction("scrollIntoView"); should do it

Olli Tietäväinen:
Hi,

component.getElement().callFunction("scrollIntoView"); should do it

Perfect. Thanks

THANKS, its work perfectly !