我在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)
我想格式化单元格&#39; Id&#39;取决于属性/列的名称&#39;名称&#39;
我怎样才能做到这一点?
答案 0 :(得分:1)
您可以使用rowItem
属性访问当前行的项目。这可能为null,因此请确保使用null safe运算符(?)来访问它。