0

我在 TornadoFx 中定义了一个 treeTableView

treeTableView = TreeTableView<EntityItem>().apply {
        column("Id", EntityItem::id).prefWidth(200).cellFormat {
            //how to refer to value of property Name ?
        }
        column("Name", EntityItem::name).prefWidth(200)

我想根据属性/列“名称”的值来格式化单元格“Id”

我怎样才能做到这一点?

4

1 回答 1

2

您可以使用该rowItem属性访问当前行的项目。这可能为 null,因此请确保使用 null 安全运算符 (?) 访问它。

于 2017-12-25T19:53:00.317 回答