Hey guys, quick layout question -- I have a `Table...
# tornadofx
t
Hey guys, quick layout question -- I have a
TableView
inside an
HBox
with some siblings, inside a
VBox
with some siblings. Can I get the table to both
vgrow
and
hgrow
to fill all available space when the window is resized?
r
Set
hgrow
on the
TableView
and
vgrow
and the
HBox
.
Also, make sure you're not just needlessly recreating
BorderPane
t
Thanks for the tip!
Yeah, on second thought a borderpane is merited in my used case!