4

私はで実験してきTreeTableViewましたJDK 8。プログラムを起動して機能させた後、スクロールすると行が空白になるという問題に気付きました。更新時にセルの可視性をリセットすることから、更新時に再描画されることを期待して、列の可視性をリセットすることまで、すべてを試しました。これは、ツリー テーブル ビューをスクロールすると行が空白になることを示すために作成したテスト アプレットですが、テーブル ビューの場合はそうではありません。

public class TableViewTest extends Application{

private TreeTableView treeTable = new TreeTableView();
private TableView regularTable = new TableView();

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

@Override
public void start(Stage stage) throws Exception {

    final ObservableList<Person> data = FXCollections.observableArrayList(
            new Person("Jacob", "Smith", "jacob.smith@example.com"),
            new Person("Isabella", "Johnson", "isabella.johnson@example.com"),
            new Person("Ethan", "Williams", "ethan.williams@example.com"),
            new Person("Emma", "Jones", "emma.jones@example.com"),
            new Person("Michael", "Brown", "michael.brown@example.com"),
            new Person("Jacob", "Smith", "jacob.smith@example.com"),
            new Person("Isabella", "Johnson", "isabella.johnson@example.com"),
            new Person("Ethan", "Williams", "ethan.williams@example.com"),
            new Person("Emma", "Jones", "emma.jones@example.com"),
            new Person("Michael", "Brown", "michael.brown@example.com"),
            new Person("Jacob", "Smith", "jacob.smith@example.com"),
            new Person("Isabella", "Johnson", "isabella.johnson@example.com"),
            new Person("Ethan", "Williams", "ethan.williams@example.com"),
            new Person("Emma", "Jones", "emma.jones@example.com"),
            new Person("Michael", "Brown", "michael.brown@example.com"),
            new Person("Jacob", "Smith", "jacob.smith@example.com"),
            new Person("Isabella", "Johnson", "isabella.johnson@example.com"),
            new Person("Ethan", "Williams", "ethan.williams@example.com"),
            new Person("Emma", "Jones", "emma.jones@example.com"),
            new Person("Michael", "Brown", "michael.brown@example.com"),
            new Person("Jacob", "Smith", "jacob.smith@example.com"),
            new Person("Isabella", "Johnson", "isabella.johnson@example.com"),
            new Person("Ethan", "Williams", "ethan.williams@example.com"),
            new Person("Emma", "Jones", "emma.jones@example.com"),
            new Person("Michael", "Brown", "michael.brown@example.com"),
            new Person("Jacob", "Smith", "jacob.smith@example.com"),
            new Person("Isabella", "Johnson", "isabella.johnson@example.com"),
            new Person("Ethan", "Williams", "ethan.williams@example.com"),
            new Person("Emma", "Jones", "emma.jones@example.com"),
            new Person("Michael", "Brown", "michael.brown@example.com"),
            new Person("Jacob", "Smith", "jacob.smith@example.com"),
            new Person("Isabella", "Johnson", "isabella.johnson@example.com"),
            new Person("Ethan", "Williams", "ethan.williams@example.com"),
            new Person("Emma", "Jones", "emma.jones@example.com"),
            new Person("Michael", "Brown", "michael.brown@example.com"),
            new Person("Jacob", "Smith", "jacob.smith@example.com"),
            new Person("Isabella", "Johnson", "isabella.johnson@example.com"),
            new Person("Ethan", "Williams", "ethan.williams@example.com"),
            new Person("Emma", "Jones", "emma.jones@example.com"),
            new Person("Michael", "Brown", "michael.brown@example.com")
        );


    // REGULAR TABLE -------------------------------------------------------------------------
    Scene tableScene = new Scene(new Group());
    Stage tableStage = new Stage();
    tableStage.setTitle("Table View Sample");
    tableStage.setWidth(300);
    tableStage.setHeight(500);

    tableStage.show();
    regularTable.getItems().addAll(data);

    regularTable.setEditable(true);

    TableColumn regularFirstNameCol = new TableColumn("First Name");
    TableColumn regularLastNameCol = new TableColumn("Last Name");
    TableColumn regularEmailCol = new TableColumn("Email");

    regularFirstNameCol.setCellValueFactory(new PropertyValueFactory<Person, String>("firstName"));
    regularLastNameCol.setCellValueFactory(new PropertyValueFactory<Person, String>("lastName"));
    regularEmailCol.setCellValueFactory(new PropertyValueFactory<Person, String>("email"));

    regularTable.getColumns().addAll(regularFirstNameCol, regularLastNameCol, regularEmailCol);

    final VBox vbox1 = new VBox();
    vbox1.setSpacing(5);
    vbox1.setPadding(new Insets(10, 0, 0, 10));
    vbox1.getChildren().addAll(regularTable);

    ((Group) tableScene.getRoot()).getChildren().addAll(vbox1);

    tableStage.setScene(tableScene);

    // TREE TABLE ----------------------------------------------------------------------------------------------------------------------
    Scene scene = new Scene(new Group());
    stage.setTitle("Tree Table Sample");
    stage.setWidth(300);
    stage.setHeight(500);

    final Label label = new Label("Address Book");
    label.setFont(new Font("Arial", 20));

    treeTable.setEditable(true);

    TreeTableColumn firstNameCol = new TreeTableColumn("First Name");
    TreeTableColumn lastNameCol = new TreeTableColumn("Last Name");
    TreeTableColumn emailCol = new TreeTableColumn("Email");

    treeTable.getColumns().addAll(firstNameCol, lastNameCol, emailCol);

    final VBox vbox = new VBox();
    vbox.setSpacing(5);
    vbox.setPadding(new Insets(10, 0, 0, 10));
    vbox.getChildren().addAll(label, treeTable);

    ((Group) scene.getRoot()).getChildren().addAll(vbox);

    stage.setScene(scene);

    firstNameCol.setCellValueFactory(new TreeItemPropertyValueFactory<Person,String>("firstName"));
    lastNameCol.setCellValueFactory(new TreeItemPropertyValueFactory<Person,String>("lastName"));
    emailCol.setCellValueFactory(new TreeItemPropertyValueFactory<Person,String>("email"));

    TreeItem<Person> root = new TreeItem<Person>(new Person("TEST", "TEST", "TEST"));

    treeTable.setRoot(root);
    treeTable.setShowRoot(true);
    root.setExpanded(true);

    for (Person person : data){
        TreeItem<Person> p = new TreeItem<Person>(person);
        root.getChildren().add(p);
    }

    stage.show();


}

誰かがこれの修正/解決策を知っていますか、それともこれは の既知のバグTreeTableViewですか?

編集:この例を使用してこれを試しました

https://wikis.oracle.com/display/OpenJDK/TreeTableView+API+Examples

行が欠落している/白く表示されているという同じ問題が引き続き発生します。

4

1 に答える 1

1

解決策を提供してくれた@Alexander Kirovに感謝します。ビルド 104 にアップグレードすると、この問題は解決しました。

于 2013-09-04T13:58:55.963 に答える