Change traverse order

When traversing the fields in a layout (f.e. FormLayout) by tabulator key, the fields are traversed in a certain order. Is there a chance to change this standard order?

Hey Mirko,

Vaadin API gives you the option to set the tab index for you components.
So if you want to traverse in a certain order, just number it from 0 to x.
Keep in mind, any other field that you didn’t specify a tab index for will be after the last set tab index and in order of when it was added.

Greetings,
Michael

Thank you! That works!