sbyrne
01/02/2019, 4:47 PMTableView
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.