You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A Scroller component receives focus with tab or mouse clicks but does not implement Focusable.
So it is not possible to forbit focusing a Scroller with setTabIndex(-1) or focus a Scroller with focus(),
Expected outcome
A Scroller implementing Focusable
Minimal reproducible example
VerticalLayout layout = new VerticalLayout (
new TextField(),
new Scroller(new Html("Text in Sccroller")));
Steps to reproduce
Create Layout with a Scroller
Press tab -> Scroller will be focused, no possibility to prevent this from Java
Environment
Vaadin version(s): 23.2.1
OS: Windows
Browsers
No response
The text was updated successfully, but these errors were encountered:
Thanks for the issue. This is an oversight from our side, we forgot to add Focusable after implementing the corresponding change in the web component: vaadin/web-components#3107. This should be changed, probably in 23.3.
Description
A Scroller component receives focus with tab or mouse clicks but does not implement Focusable.
So it is not possible to forbit focusing a Scroller with setTabIndex(-1) or focus a Scroller with focus(),
Expected outcome
A Scroller implementing Focusable
Minimal reproducible example
VerticalLayout layout = new VerticalLayout (
new TextField(),
new Scroller(new Html("Text in Sccroller")));
Steps to reproduce
Create Layout with a Scroller
Press tab -> Scroller will be focused, no possibility to prevent this from Java
Environment
Vaadin version(s): 23.2.1
OS: Windows
Browsers
No response
The text was updated successfully, but these errors were encountered: