add vbox to grid javafx code example
Example: how to put a gridpain in a vbox
GridPane grid = new GridPane();
grid.add(label,0,0);
grid.add(textField,1,0);
VBox box = new VBox();
box.getChildren().addAll(txt,grid);
root.getChildren().add(box);*/