I use ComboBox, once put into a list (FXCollections.observableArrayList) with 2 short lines, then a list with a large number of rows.
After I change from the list with 2 to list with 15 (or more) - I see only 2 line each time inside ComboBox.
How do I change this setting? How display 4 or more?
Relevance code:
cbQueriesOptions.getItems().clear();
cbQueriesOptions.getItems().addAll(itemsQueriesOptionsString);
cbQueriesOptions.setVisible(true);
cbQueriesOptions.setDisable(true);
cbQueriesOptions.getItems().clear();
cbQueriesOptions.getItems().addAll(itemsQueriesOptionsAll);