说我有一个给定的TableView<Person>。我有一列具有设置为LocalDatecellFactory()类型的列。

birthdayColumn.setCellFactory(column -> {
    return new TableCell<Person, LocalDate>() {
        @Override
        protected void updateItem(LocalDate item, boolean empty) {
            super.updateItem(item, empty);

            //Person person = ... I want to get entire Person, not just LocalDate item

            if (item == null || empty) {
                setText(null);
                setStyle("");
            } else {
                // Format date.
                setText(myDateFormatter.format(item));

                // Style all dates in March with a different color.
                if (item.getMonth() == Month.MARCH) {
                    setTextFill(Color.CHOCOLATE);
                    setStyle("-fx-background-color: yellow");
                } else {
                    setTextFill(Color.BLACK);
                    setStyle("");
                }
            }
        }
    };
});


有什么方法可以在Person方法中访问该记录的整个updateItem()吗?我想使用Person的其他属性有条件地格式化单元格...

最佳答案

TableCell可以访问TableView及其在项目列表中的索引,因此您可以执行以下操作:

Person person = getTableView().getItems().get(getIndex());

关于java - JavaFX-获取cellFactory()的整个行项目?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35661981/

10-12 05:59