I an working on JavaFX 8 and SceneBuilder. I created some radio buttons in the FXML File and specified a toggleGroup name to a radio button list in
SceneBuilder
toggleGroup
@FXML ToggleGroup right; //I called it right in SceneBuilder.
later somewhere in method.
RadioButton selectedRadioButton = (RadioButton) right.getSelectedToggle(); String toogleGroupValue = selectedRadioButton.getText();