I am trying to add a column to a `TableView` that ...
# tornadofx
s
I am trying to add a column to a
TableView
that has checkboxes that are bound to the selection model. I create an
Observable<Boolean>
in the column valueProvider that reflects the selection model. (Interestingly, that observable's
addListener
is never called.) If I call
Column.makeEditable(true)
, it shows checkboxes that reflect the selection state. Now I want to handle change events from the checkboxes to update the selection. I tried setting the cellFactory and creating a
CheckBoxTableCell
, but the
Observable
I give it is never used.