I've done a major refactoring of the TableView sup...
# tornadofx
e
I've done a major refactoring of the TableView support in TornadoFX and included support for at
TableCellFragment
which can be used with
TableColumn.cellFragment()
.
TableCellFragment
has two properties,
itemProperty
and
rowItemProperty
, where the first points to the value from the cellValueFactory and the second points to the item for the current row. This makes it easy to support things like inline editing with validation in TableView. One example here:
👍 3