check this out
Group g = new Group();
GridPane grid = new GridPane(); //
g.getChildren().addAll(grid);
now my question is how do i remove this "grid" from "g" without specifying "grid" like something like this
g.getChildren().removeAll(null); //i do not know what to insert here?
thanks in advance