I'm attempting to make an auto complete combo box in javafx, but I'm having an issue that I can't seem to solve.
When a user presses the up or down arrow when the combo box is showing, it changes the selected item. Is there anyway disable this functionality such that when an up or down arrow is pressed, it still "highlights" the next or previous item, but doesn't actually change the selection model?
It seems that the arrow key pressed is being registered as an ActionEvent but consuming this event doesn't actually stop the selection from changing.
Any insight would be greatly appreciated, and I can give a SSCE if necessary.