In a JavaFX application, I have two textboxes and three choicebox on a screen.
They are all placed in vertical manner.
On navigating by keyboard TAB when focus reaches fist choicebox,if i click on keyboard Down arrow, then instead of opening the items for that choicebox, focus moves to next choicebox and displays items from it.
I tried to manually override this by creating a keypress event method on first choicebox, still the focus, moves to next choicebox.
Any solution?
Put event filter in the parent component that contains those controls.