I have a ListView for wich the prefH and prefW have been set. I am dynamically adding items to the list. When the first item located outside of the visible content is added, the vertical Scrollbar is displayed but it doesn't allow to scroll the content. Adding other items makes the scrollbar to become effective.
In a more complex containment context for which I don't manage to get a testcase, the ScrollBar becomes effective (allows me to scroll) when I add items twice the visible height.
Testcase:
AnchorPane ap = new AnchorPane();
final ListView list = new ListView();
list.setPrefSize(100, 75);
final ObservableList<String> content = FXCollections.observableArrayList();
list.setItems(content);
Button b = new Button();
b.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
ObservableList<String> newContent = FXCollections.observableArrayList(content);
newContent.add("Elem" + i);
i += 1;
content.setAll(newContent);
}
});
Scene scene = new Scene(ap, 100, 100);
ap.getChildren().add(list);
ap.getChildren().add(b);
primaryStage.setScene(scene);
primaryStage.setVisible(true);
In a more complex containment context for which I don't manage to get a testcase, the ScrollBar becomes effective (allows me to scroll) when I add items twice the visible height.
Testcase:
AnchorPane ap = new AnchorPane();
final ListView list = new ListView();
list.setPrefSize(100, 75);
final ObservableList<String> content = FXCollections.observableArrayList();
list.setItems(content);
Button b = new Button();
b.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
ObservableList<String> newContent = FXCollections.observableArrayList(content);
newContent.add("Elem" + i);
i += 1;
content.setAll(newContent);
}
});
Scene scene = new Scene(ap, 100, 100);
ap.getChildren().add(list);
ap.getChildren().add(b);
primaryStage.setScene(scene);
primaryStage.setVisible(true);