I implemented some simple paging for my TableView to handle >500.000 Entries. When I browse for- or backward I do following: tableView.getItem().clear(); tableView.getItems().addAll(currenList); (alternative I tested with tableView.setItems(currentList); ). On Windows 7 with 2.02 it is all fine, on Linux and Mac the TableView UI won't update with the last two versions of 2.1. I noticed that the TableView has the correct Entries (TableRow callback) but the UI won't refresh.