如何从JavaFX中的TableView中删除CheckBox?

时间:2018-05-22 04:23:09

标签: java javafx

我正在使用JavaFX编写座位表程序。我有一张桌子,上面列出了学生名单,成绩,以及他们是否存在(使用复选框)。我有一个删除按钮,允许我从列表中删除学生。这很好,但是,每当我删除学生对象时,复选框都不会随之而来。我不确定我需要添加什么才能让它工作。这是删除代码的片段。下面还有两张图片显示了我的问题。这是我的第一篇文章,如果我错过了什么,请告诉我。请帮忙!谢谢!

ObservableList<Student> items, sel;
items = currentTable.getItems();
sel = currentTable.getSelectionModel().getSelectedItems();
Student s = new Student("", "", 0, "");
for (Student p : sel) {
    items.remove(p);
    s = p;
}

删除前

[Before Delete

删除后

[After Delete

1 个答案:

答案 0 :(得分:1)

这与deleteremove方法无关。它与您在TableColumn.setCellFactory()中所做的事情有关。

要获得您显示的复选框,您应该使用(通常)两种方法之一:

在设置Cell Factory

时覆盖TableCell中的updateItem()

empty中有updateItem()个参数,表示该行是否为空。您需要使用它来确定何时不显示复选框。

column.setCellFactory(col -> {
    return new TableCell<Foo, Boolean>() {
        final CheckBox checkBox = new CheckBox();

        @Override
        public void updateItem(final Boolean selected, final boolean empty) {
            super.updateItem(selected, empty);

            if (!this.isEmpty()) {
                setGraphic(checkBox);
                setText("");
            }
            else {
                setGraphic(null); // Remove checkbox if row is empty
                setText("");
            }
        }
    }
}

使用CheckBoxTableCell

JavaFX API具有这个方便的类CheckBoxTableCell,可以为您完成所有这些操作。大多数人发现这个类很难使用,因为有两件事你需要确保正确使用它:

  1. 该列所属的TableView必须是可编辑的。
  2. TableColumn本身必须是可编辑的。
  3. 示例:

    tableView.setEditable(true);
    tableColumnSelected.setCellFactory(CheckBoxTableCell.forTableColumn(tableColumnSelected));
    tableColumnSelected.setEditable(true);
    

    至于您是否希望使用删除按钮删除哪个条目,只需从TableView中删除正确的项目。