RowGrouping rowGrouping = dataTable.getRowGrouping();
if (rowGrouping != null) {
customRows.add(new GroupHeaderRow(dataTable));
customRows.add(new InGroupHeaderRow(dataTable));
customRows.add(new InGroupFooterRow(dataTable));
customRows.add(new GroupFooterRow(dataTable));
}
}
List<UIComponent> children = table.getChildren();
int customRowIndex = 0;