I have a class Person
which amongst other attributes contains an ObservableList<Car>
. Now I want to display the data in a TableView
so that it looks like this:
First Name | Last Name | Car
-----------+-----------+---------
John | Doe | BMW
John | Doe | Audi
Walter | Johnson | Chrysler
How can I get JavaFX to extract the list of class Person
and create a row for each item in that list?
The easyest way is to create a new class CarOfPerson, that contains a Car and the owner:
This class can now be used as Table item. So if you create an observable list with these instances you could set up the table as:
The main challenge now is to either:
Create a view of type ObservableList that dynamically creates the CarOfPerson objects on demand:
This will act as a potentiall huge list of observable CarOfPersons. But each of these instances will be generated only on demand and if shown in the current table ....
The observation of the myPersons will update the TableView to immediately show changes in the persons list. So adding, removing persons or names will be reflected in the table.
Of course my implementation if very inefficient, iterating through all Persons up to the proper index, but that could be optimized. Its ment as a hint.