My question is very simple but I don't find the answer.
I would to create a form in JavaFX with fxml file which browses a list of TextField.
This list is filed in Java but how can I browse this list in fxml ?
Is it possible to do something like this:
<LOOP >
<HBox>
<children>
<Label prefWidth="150" text="Title" />
<TextField fx:id="title" />
</children>
</HBox>
</END LOOP>
Thanks for your help