I have a choiceBox:
final ChoiceBox<T> cb = new ChoiceBox<T>();
cb.setItems(FXCollections.observableArrayList(values));
cb.getSelectionModel().selectFirst();
It is not empty. The first item is selected.
You can see on screen shot, that "NEVER" has no selected marking.
final ChoiceBox<T> cb = new ChoiceBox<T>();
cb.setItems(FXCollections.observableArrayList(values));
cb.getSelectionModel().selectFirst();
It is not empty. The first item is selected.
You can see on screen shot, that "NEVER" has no selected marking.