new ColumnConstraints(100, 100, Double.MAX_VALUE, Priority.ALWAYS, HPos.CENTER, true),
new ColumnConstraints(100,100,100, Priority.NEVER, HPos.RIGHT, true),
new ColumnConstraints(200,200,200, Priority.NEVER, HPos.RIGHT, true)
);
grid.getChildren().addAll(title1, vBox, locationField, goButton, title2, textVBox, view, vBoxRight, statusField);
RowConstraints row1 = new RowConstraints();
row2 = new RowConstraints();
row3 = new RowConstraints();
RowConstraints row4 = new RowConstraints();
row1.setMaxHeight(30);
row1.setMinHeight(30);
row1.setVgrow(Priority.ALWAYS);
vBox.setMinHeight(100);
textVBox.setMaxHeight(0);
row2.setMaxHeight(0);
row3.setPrefHeight(USE_COMPUTED_SIZE);
//row3.setFillHeight(true);
row3.setVgrow(Priority.SOMETIMES);
row4.setMaxHeight(40);
row4.setMinHeight(40);
row4.setFillHeight(true);
//grid.setGridLinesVisible(true);
grid.getRowConstraints().addAll(row1,row2,row3, row4);
getChildren().add(grid);