Problem Description
I have a CheckListView with several items(checkboxes). I changed the Selection mode (code below) to allow multiple selections. However, when I select multiple rows, like in the picture below, and press SPACE, only the 'current selected row' changes state.
I want/need to : when I press space, toggle all selected row states.
I tried looking into handlers but im confused to what to change.
Any help is greatly appreciated.
@FXML
private CheckListView<String> checkListPermissoes;
@Override
public void initialize(URL url, ResourceBundle rb) {
... checkListPermissoes.getSelectionModel().setSelectionMode(SelectionMode.MULTIPLE);