We need to loop over the rows on a table but it's a complicated table:
the structure is as follows:
<p-treetable>
....
<table class = 'undefined'>
<tbody class='ui-treetable-data ui-widget-content'>
<div class='ui-treetable-row ui-treetable-row-selectable>
<td>
<td>
<td>
<td>
</div>
<div class = 'ui-treetable-row'>
<td class = 'ui-treetable-child--table-container'>
<table>
<tbody pTreeRow>
<div class='ui-treetable-row ui-treetable-row-selectable">
<td>
<td>
</div>
</tbody>
</table>
It's the tds in the child-table-container that we are trying to access. Any advice? I can access one of them, but I need to figure out how to define the collection in a coded step.