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

Wrong initial size of TableView

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Cannot Reproduce
    • Icon: P4 P4
    • fx2.1
    • fx2.0
    • javafx
    • JavaFx 2.0 b38

      Code to reproduce:
      package javafxtable;

      import javafx.application.Application;
      import javafx.collections.FXCollections;
      import javafx.collections.ObservableList;
      import javafx.scene.Scene;
      import javafx.scene.control.TableColumn;
      import javafx.scene.control.TableView;
      import javafx.stage.Stage;

      public class JavaFXTable extends Application {

          public static void main(String[] args) {
              Application.launch(JavaFXTable.class, args);
          }

          @Override
          public void start(Stage primaryStage) {
              primaryStage.setTitle("Table issues");
              ObservableList<Record> records = FXCollections.observableArrayList();
              for (int i = 1; i <= 100; i++) {
                  Record r = new Record((long)i, "Name "+i);
                  records.add(r);
              }
              TableView<Record> root = new TableView<Record>();
              TableColumn<Long> columnId = new TableColumn<Long>("ID");
              columnId.setProperty("id");
              TableColumn<String> columnName = new TableColumn<String>("Name");
              columnName.setProperty("name");
              root.getColumns().addAll(columnId, columnName);
              root.setItems(records);
              Scene scene = new Scene(root);
              primaryStage.setScene(scene);
              primaryStage.setVisible(true);
          }

          public static class Record {
              private final Long id;
              private final String name;
              public Record(Long id, String name) {
                  this.id = id;
                  this.name = name;
              }
              public Long getId() {
                  return id;
              }
              public String getName() {
                  return name;
              }
          }
      }


      When right scroll bar is visible part of the rightmost column is obscured by it. For details see attached screen-shot. Expected behavior, when width of a TableView is not defined it should contain all columns without bottom scroll bar.

            jgiles Jonathan Giles
            iyalovyyjfx Illya Yalovyy (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: