Tableview visible rows
问题 I want to implement a custom scroll functionality for a tableview. Therefore access to the visible rows and cells is needed. How to detect the visible cells and rows in a JavaFX tableview? I don't have found anything about that in the API description for tableview. Thanks 回答1: Try this in a TableView to scroll to a wanted row. I've tried with table.scrollTo(index) but it doesn't scroll properly as it sets the wanted row as the first visible. I've written the next code on my controller. Here