Skip to content
Advertisement

JavaFX Get ComboBox from ChoiceDialog

I have a javafx.scene.control.ChoiceDialog object in my JavaFX project. When the dialog opens, I want to set the focus to the underlying ComboBox. However, I can’t figure out how to get the underlying ComboBox control. With a TextInputDialog, there is a method called getEditor(). Is there any way (other than reflectively accessing the private comboBox member) to get the underlying ComboBox?

Advertisement

Answer

To set the focus to the ComboBox you can use a dirty hack, which triggers updateGrid of the ChoiceDialog after it is shown:

JavaScript

Obtaining the ComboBox instance using the style class is useful to override the default keyboard navigation:

JavaScript

When the above changes in place, pressing the down arrow key will open the combo box instance instead of navigating to the Cancel button.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement