-
Bug
-
Resolution: Not an Issue
-
P4
-
None
-
7u55, 8, 9, 10
-
8.0b116
Code :
@Override
public void start(Stage stage) throws Exception {
ListView lv = new ListView();
lv.setOrientation(Orientation.VERTICAL);
for (int i = 0; i < 10; i++) {
lv.getItems().add(new Rectangle(50, 170));
}
stage.setScene(new Scene(lv, 100, 100));
stage.show();
}
try to do navigate there using page up / page down
Actual for both, vertical and horizontal orientation.
Affected tests:
graphics/api/control/ListViewTest1Test.java
graphics/api/control/ListViewTest2Test.java
copy ofRT-33229
@Override
public void start(Stage stage) throws Exception {
ListView lv = new ListView();
lv.setOrientation(Orientation.VERTICAL);
for (int i = 0; i < 10; i++) {
lv.getItems().add(new Rectangle(50, 170));
}
stage.setScene(new Scene(lv, 100, 100));
stage.show();
}
try to do navigate there using page up / page down
Actual for both, vertical and horizontal orientation.
Affected tests:
graphics/api/control/ListViewTest1Test.java
graphics/api/control/ListViewTest2Test.java
copy of
- relates to
-
JDK-8290863 Update the documentation of Virtualized controls to include the best practice of not using Nodes directly in the item list
- Resolved