Click here to Skip to main content
15,893,564 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello together,
i want to add one sceenbuilder fxml multiple times to another sceen with diffrent data.
For each dataset add one fxmlCalendar.fxml to the main sceen with the specific data from database.

Can you help my by this problem? I don't know any other way to solve this.
Image what i want to do.

Thanks a lot!

What I have tried:

I tried it like this:
Java
while(rs.next())
{
   grid.add(FXMLLoader.load(getClass().getResource("fxmlCalendar.fxml")),0 , i);
   i++;
}
Posted
Updated 21-Mar-16 22:50pm
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900