0

I have a combobox that has around 90 elements in it. In some applications when you select the combobox you can type and find the element easily. But when i tried it on javaFx it didn't work.Is there a way to do this? Because now user needs to scroll down which sucks due to number of elements in the combobox.

1 Answers1

0

You can take a look at this https://github.com/jesuino/javafx-combox-autocomplete or JavaFX - Filtered ComboBox

If not what you can have as a work around is have a text box that is bound to the observable of data in the combobox and on keypress you filter the observable

Rahul Singh
  • 19,030
  • 11
  • 64
  • 86