I want to get the valueProperty of the scrollBar in a TreeTableView in JavaFX.
Both these variants return null:
Node nodeA = treeTableView.lookup(".scroll-bar:vertical");
Node nodeA = treeTableView.lookup(".scroll-bar");
Is there another way to retrieve the node of the scrollBar ?