itimoshin6243
itimoshin6243

Reputation: 11

JavaFX: Set actual height of vbox children

I have a VBox pane and a few tableviews inside. When the window height is too small to show all tables in full size, they are minimized. But I want to see my tableviews in its actual size with a scrollbar, if required.

Upvotes: 0

Views: 883

Answers (1)

eckig
eckig

Reputation: 11154

Just for the sake of completeness:

The solution is to wrap the content inside a ScrollPane which automatically manages the scrolling if the content inside grows or shrinks.

Upvotes: 0

Related Questions