Let's say I have a list of People. These people have a number of custom properties, first names, last names, addresses etc.
What I want to do is create a "custom component" (some text fields etc), written in FXML, which represents a person. Then, for each person in my collection (let's say an ObservableList), I want to append a container with this component.
Coming from Swing I can imagine how I would do this in swing programatically, but my hope is to do this in a way which best utilizes the features available of javafx.
I really appreciate any help, links to tutorials etc.
Cheers!
note: I should say that I'm aware I should be using javaFX collections to create observablelists, etc, and will do so. My question pertains specifically as to the best ways to generate UI's using FXML templates and data models.