0

I am writing a program to generate a log file using javafx fxml. Is it possible to generate a group of text fields that are associated by instrument. Example: Model: Sn: Tg: Gas:

I need to gather this information for each instrument but some places have 5 units some only have 1. I am looking to have the fields generate from user input for how many they need. Is this something I can do?

Michael H.
  • 93
  • 3
  • 13

1 Answers1

0

You can use ListView or TableView and custom cell factory with custom objects. Check these posts for more info -1 -2

Alexander Agopov
  • 133
  • 4
  • 12