JavaServerFaces – Example of list interaction with ui:repeat

<ui:repeat value="#{myBean.myList}" var="obj">
    <td>
         <p>#{obj.value}</p>
    </td>
</ui:repeat>

Leave a comment