I am have a list of maps , each map contains number of values List<Map<Integer, String>> recordsList
what I need to do is to iterate over the list and iterate also over each value in each map to form a table, this is my code
<table>
<tr>
<ui:repeat id="record-table" var="c" value="#{Bean.recordsList}">
<tr>
<ui:repeat var="m" value="#{c.values}">
<td>#{m}</td>
</ui:repeat>
</tr>
</ui:repeat>
</tr>
</table>
My problem is this is not working, how to make it work?? Thanks in advance.
> myList` would it work??
– Yara Mousa Jun 18 '14 at 12:01