Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 392
sashaaero Avatar asked Mar 17 '15 02:03

sashaaero


1 Answers

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();
like image 133
James_D Avatar answered Oct 10 '22 13:10

James_D