We have added a CheckComboBox to our window. We populate it this way:
categoriesCheckComboBox.getItems().setAll(items);
This control is working for our needs except we can't seem to activate it with the keyboard. Using a normal combobox, we can activate it with the arrowkey by pressing down. This doesn't seem to work on this control. Also it doesn't appear that it allows selection via the keyboard as well.
We are attempting to get this working for accessibility reasons.
Is there a setting I am missing to activate it that way?
Thanks