我在 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”
我怎样才能做到这一点?