1

我需要以编程方式遍历所有行数据。拥有 org.primefaces.component.datatable.DataTable 对象后,我可以使用#getRowData() 获取当前行的内容。#getColumns().getChildren() 返回一个只有一个 UiComponent 的 List,第 1 行也是如此。

迭代行数据的正确方法是什么?

已解决 使用 dataTable.setRowIndex(rowIndex),可以从特定行获取列。

for (int rowIndex = 0; rowIndex < rowCount; rowIndex++) {
    table.setRowIndex(rowIndex);
    columns = table.getColumns();
    // Your Code Goes Here
}
4

1 回答 1

1

已解决使用 dataTable.setRowIndex(rowIndex),可以从特定行获取列。

for (int rowIndex = 0; rowIndex < rowCount; rowIndex++) {
    table.setRowIndex(rowIndex);
    columns = table.getColumns();
    // Your Code Goes Here
}
于 2014-06-10T05:59:16.817 回答