How do I deselect all ToggleButtons
in a ToggleGroup
in JavaFX? There doesn't seem to be a clearSelection()
feature like there was in Swing.
You can either do
toggleGroup.selectToggle(null);
or, if you know something is selected,
toggleGroup.getSelectedToggle().setSelected(false);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With