On a side note (sorry this is probably really obvi...
# tornadofx
d
On a side note (sorry this is probably really obvious) is it possible to bind the
isVisible
property of a
column
in a
tableview
to a SimpleBooleanProperty? I'm not sure how to define this in builder:
Copy code
tableview(viewModel.products) {
  column("Product name", Product::name){
    isVisible = ? (bind to a preferencesViewModel.nameColumnVisibleProperty)
  }
}