I want to have a form that has some basic header information (name, date, etc.). Under this header information the user should be able to choose from a ChoiceBox. Below the ChoiceBox there is a ScrollPane. The content of the ScrollPane should be dependent on what was chosen in the ChoiceBox.
What would be the JavaFX way to do this? What should the content of the ScrollPane be? A scene? A Layout? Can I simulate this in the Scenebuilder as well or can I only do one scene at a time? How much of this will be in FXML and how much in the controller class?
I think I could figure out how to do this on my own, but I don't want to do it in some ugly way, but in the way JavaFX would want me to do it.
Thanks