I have this:
<ui:repeat value="#{orderController.listRequestItem}" var="item">
....
<tbody>
<tr>
<td>#{item.product.codigoProduto}</td>
<td>
<ui:repeat value="#{item.product.materials}" var="m">
#{m.description}
</ui:repeat>
</td>
...
The listRequestItem
is:
public List<RequestItemVO> listRequestItem;
and here I'm populating it:
listRequestItem = new ArrayList<>(requestVO1.getRequestItem());
The item.product.materials
is:
public Set<MaterialVO> getMaterials()
{
//compiled code
throw new RuntimeException("Compiled Code");
}
When I try to access the m
on my inner <ui:repeat>
, I can't access its methods.
The #{item.product.codigoProduto}
is returning the product code correctly.