Hi Mark, Previously I tried focusTraversalPolicy="$bxml:null" also didn't managed to get it work. I got it work with the setFocusTraversalPolicy(null). Just as per what Roger mentioned previously, you must wrap those buttons in a container and call the function. For example: @BXML private Button addSymbolButton = null; @BXML private BoxPane mainPane = null; mainPane.add(addSymbolButton); mainPane.setFocusTraversalPolicy(null);
Hope this help. Jeffrey