I want to get First column value as we can achieve in Jtable using swing. below is my code and image for jtable.
String Table_Clicked = jTable1.getModel().ge
You have to take a look at the underlying ObservableList. The code that works for me was:
ObservableList
tableView.getItems().get(tableView.getSelectionModel().getSelectedIndex())
In my test that returns a Person object (POJO i wrote) which has to contain a get() method.
Person
get()