am migrating from swing to javafx. Can anyone help with a link/code snippet on how to cascade combobox(es) based on parent-child selection in javafxe.g. country-state, branch-department-unit.
Javafx Cascading dropdown based on selection
4.2k Views Asked by Abiodun Osinaike At
2
There are 2 best solutions below
0

Do it basically the same way as you would in Swing.
Use combo.getSelectionModel().selectedItemProperty().addListener()
to add a ChangeListener that will be called whenever the combo box's selection changes.
See here for basic introduction to Combo Box : http://docs.oracle.com/javafx/2/ui_controls/combo-box.htm#BABJCCIB
Use this code:for basic drop down example