I'm trying to find some sample code to update my TableView from inside my controller. If possible I want to make my TableView with fxml.
def addPerson(event: ActionEvent) {
// how do I access my TableView items?
}
My TableView looks like:
<TableView fx:id="tableView"></TableView>
Also, what's a good way to interactively inspect stage objects and methods?