I need to iterate over all the rows in a TableView without using Events. I would like to get the total number of rows, the TableRow, and a Cell from a specified TableColumn in the TableRow.
Something like this:
for(TableRow tableRow: tableView.getRows()){
Cell cell = tableRow.getColumn(4).getCell();
// do something to the cell
}
Is this possible?
Edited by: Conzar on May 19, 2013 11:18 PM