Hey guys I am currently working on an application ...
# tornadofx
n
Hey guys I am currently working on an application were I use a
TreeTableView
and some of the cells have `TreeView`s embedded in them. I would like to have the table row to be as height as the
TreeView
so that all the expanded tree items are visible. I tried to use expandedItemProperty() and on every change I compute the height I want and then set the minHeight. I tried both minHeight on tableview and on the row that the cell resides in the `TreeTableView. But I get a strange behavior, at the beginning all treeItems are expanded if I collapse an item the size doesn't change only if i collapse or expand a second item the the treeview resizes but it the has the size that the treeview should have had after the first collapse. From there on the size is always one action behind. Not sure if you guys can follow along hehe. Basically my question is if anybody tried to embedd a treeview in a treetableview already were the treeview shows always all expanded items?