0

I want the following ComboBox:

enter image description here

to look like one of these:

enter image description here or enter image description here

The code for the ComboBox:

// ...
ComboBox<String> comboBox = new ComboBox<>();
comboBox.getItems().addAll("Present", "Sick", "Absent");
root.getChildren().add(comboBox); // previously defined
// ...
mnrafg
  • 71
  • 1
  • 10

1 Answers1

0

You could try to set the maximum height and width of the ComboBox like that

ComboBox<String> comboBox = new ComboBox<>();
comboBox.setMaxWidth(25);
comboBox.setMaxHeight(25);