<@U25PH0DBJ> I'm looking for a way to provide a Ce...
# tornadofx
e
@jonathan I'm looking for a way to provide a Cell decorator to ListView/TableView/TreeView and friends, so that you can install a cell factory that retrieves a cell from the original cell factory and delegate all calls to the original cell and just override
updateItem
after the original cell has done it's job. I had to give up due to private/final methods in Cell and the subclasses. Can you see a way to proxy these cells? It is very convenient to be able to augment an already existing cell, for example if you create a cell using the
CheckBoxTreeCell.forTreeView()
call and want to modify it a bit.