Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8089553

[TreeView] Horizontal scrolling of a TreeView in a Popup can move the popup to the left.

    • Icon: Bug Bug
    • Resolution: Unresolved
    • Icon: P4 P4
    • tbd
    • 8u5
    • javafx
    • Windows 7 64bit, JDK8u20 ea b17 64bit, JDK8u5 64bit

      I have a TreeView with long TreeItem labels in a Popup.
      When I scroll the tree horizontally very quickly, the Popup randomly moves a random amount to the left.
      This does not occur if the labels are short and popup is narrow, only when labels are long and popup is wide.

      The source below reproduces the bug.
      public class PopupPosition extends Application {

          @Override
          public void start(final Stage primaryStage) throws Exception {
              Popup popup = new Popup();

              TreeView<String> treeView = new TreeView<>();
              TreeItem<String> rootItem = new TreeItem<>("root");
              rootItem.setExpanded(true);
              addChildren(rootItem);

              treeView.setRoot(rootItem);
              treeView.setPrefWidth(400);
              treeView.setPrefHeight(300);

              popup.getContent().add(treeView);
              popup.setAutoHide(true);

              popup.xProperty().addListener(
                              (observable, oldValue, newValue) -> System.out.println("Position x: oldValue=" + oldValue
                                      + ", newValue=" + newValue));

              Button button = new Button("Show popup");
              button.setOnAction(new EventHandler<ActionEvent>() {

                  @Override
                  public void handle(final ActionEvent event) {
                      popup.show(primaryStage);
                      popup.setX(primaryStage.getX());
                      popup.setY(primaryStage.getY());
                  }

              });

              StackPane root = new StackPane();
              root.getChildren().add(button);
              primaryStage.setScene(new Scene(root, 300, 250));
              primaryStage.show();
          }

          private void addChildren(final TreeItem<String> root) {
              TreeItem<String> item = root;
              for (int i = 0; i < 30; i++) {
                  TreeItem<String> child = new TreeItem<>(
                          "this is a very very very very very very very very very very very very"
                                  + " very very very very very very very very very very very very very"
                                  + " very very very very very very very very very very very very very"
                                  + " very very very very very very very very very very very very very"
                                  + " very very very long child " + i);
                  child.setExpanded(true);
                  item.getChildren().add(child);

                  item = child;
              }
          }

          public static void main(final String[] args) {
              launch(args);
          }

      }

            Unassigned Unassigned
            rstachowijfx Radoslaw Stachowiak (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

              Created:
              Updated:
              Imported: