What I am trying to do:
I have menu and and after click I am trying to remove unnecessary TextFields.
What I did:
I used this example:
"In JavaFX, nodes can simply be removed from a Parent (e.g. an AnchorPane) using .getChildren()
following by .remove(Object o)
AnchorPane ap;
ap.getChildren().remove(btn);
I tried to use:
FXMLLoader load=new FXMLLoader(getClass().getResource("LoginRegister.fxml"));
Parent root = load.load();
root.getChildren();
But my root does not have getChildren()
function.
Where could be the problem?
Thank you in advance.
EDIT: FOUND THE ANSWER HERE: How to access UI components from SceneBuilder in JavaFX
WHAT I DID WRONG: I USED IN FXML FILE AND IN CONTROLLER DIFFERENT FX:ID's