JavaFX 8 : Iterate through TableView cells and get graphics
问题 I'm having troubles accessing the objects displayed in the TableColumn Here's the code snippet where I set the graphics of one Column. Only want to show the Name of the Person object: (Any better/easier way in doing that is welcome) ownerColumn .setCellFactory(new Callback<TableColumn<Site, Person>, TableCell<Site, Person>>() { @Override public TableCell<Site, Person> call( TableColumn<Site, Person> param) { TableCell<Site, Person> ownerCell = new TableCell<Site, Person>() { @Override