I'm using JSF 2 with Facelets. I have a managed bean that has a property referring to a List<Employee>
. Now, I have the <h:dataTable>
tag that can create a table out of that collection in a simple way.
What I need is something different, I need to create a <div>
element with an <img>
for each item in that collection. How can I achieve this in JSF 2 with Facelets?