How can I get the number of rows a TableViewin TableCell? I tried .getTableRow(), but that is not what I need. I need to figure this out if TableCellis the last cell in TableView. Or is there another way to understand this?
TableView
TableCell
.getTableRow()
considers
I found a solution myself. I'm very embarrassed.: -)
getTableView().getItems().size()
What is it.