Is there a way to a) make editable table cells hav...
# tornadofx
s
Is there a way to a) make editable table cells have textboxes all the time, not just after double-click, and b) commit instead of rollback on focus lost?
I did this:
Copy code
column("name",Person::nameProperty) {
  cellFormat {
    graphic = textfield {
      bind( rowItem.nameProperty )
    }
  }
}
Is the way I bind it going to be a problem if cells get recycled? Also, I lose dirty tracking.
b
if you use
makeEditable
, it will override your option, or your option will override it. Depending on who the first is called. They both change
cellFactory