I need to do something like the below in JavaFX:
Can you tell me how can I get only one column to change size (the middle one) in a GridPane layout? These black bordered rectangles are VBoxs. Basically, the width of VBoxs must stay the same and the width of this red marked area should resize. Any ideas or tips?
Use column constraints to set the grow priorities to
NEVER
/ALWAYS
. Assuming theGridPane
contains 3 columns and no constraints have been added yet: