Search code examples
javajavafxtableview

JavaFX TableView how to get cell's data?


I'm using that method to get whole object.

tableView.getSelectionModel().getSelectedItem()

How can I get data from single cell? enter image description here
I mean like get S20BJ9DZ300266 as String?


Solution

  • Assuming you know something is selected, you can do

    TablePosition pos = table.getSelectionModel().getSelectedCells().get(0);
    int row = pos.getRow();
    
    // Item here is the table view type:
    Item item = table.getItems().get(row);
    
    TableColumn col = pos.getTableColumn();
    
    // this gives the value in the selected cell:
    String data = (String) col.getCellObservableValue(item).getValue();