Reputation: 102785
I have an element with the ID history type of TableView. How can I find and access this object if I have the instance of Scene scene?
history
TableView
Scene scene
Upvotes: 77
Views: 77826
Reputation: 49185
Try
TableView tb = (TableView) scene.lookup("#history");
Upvotes: 145