I´m trying find out how to get a graphic of a specified cell of a tableView. My scenerio looks like this:
I know i can get a value of a specified cell, which would look something like this:
getCellValue(TableView table, int column, int row) {
((TableColumn)table.getColumns().get(column)).getCellObservableValue(row).getValue();
}
but i did not find out how to get other TableCell attributes, namely graphics, to test, if the cell gets appropriate icon after validation.