I have a custom component extending VBox that contains n number of children.
I'd like the tabbing behaviour to be such that once I set focus on a child the tab cycles through the sub-children of that child (using the tab indices on the sub-children) It should continue to do so till an arrow key press changes the focus to another child The docs on FocusManager indicate each instance of the FocusManager manages its own tab loop, leading me to believe that I need to create a FocusManager for each child (VBox). The problem is, I cant see any examples on how I could set this up. Any ideas? TIA - superabe
