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

TableView: replaced columns disappear

    XMLWordPrintable

Details

    • Bug
    • Resolution: Fixed
    • P2
    • 8
    • 8
    • javafx
    • 8.0b104

    Description

      Run the app, and watch the movie. Just move the first column after the second one.

          @Override
          public void start(final Stage stage) throws Exception {
              stage.setTitle("TableView Demo");

              StackPane pane = new StackPane();

              TableView<Object> tableView = new TableView<Object>();
              TableColumn<Object, String> columnA = new TableColumn<Object, String>("A");
              TableColumn<Object, String> columnB = new TableColumn<Object, String>("B");
              tableView.getColumns().addAll(columnA, columnB);
              pane.getChildren().addAll(tableView);

              Scene scene = new Scene(pane, 300, 500, Color.DODGERBLUE);
              stage.setScene(scene);
              stage.show();
          }

      Attachments

        Activity

          People

            jgiles Jonathan Giles
            akirov Alexander Kirov (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:
              Imported: