Primefaces:以编程方式访问数据表的行

时间:2013-07-18 09:59:34

标签: primefaces datatable

我需要以编程方式迭代所有行数据。一旦我有了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
}

1 个答案:

答案 0 :(得分:1)

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

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