Advertisement
SaXeTz

Untitled

Mar 30th, 2015
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <!-- JSP -->
  2. <h:dataTable value="#{people}" var="p">
  3. <h:column>
  4. #{p.name}
  5. </h:column>
  6. </h:dataTable>
  7.  
  8. <!-- JSTL -->
  9. <c:forEach items="${people}" var="person">
  10. <li>
  11. <span>${person.name}</span>
  12. <a class="button" href="${linkTo[HomeController].details(person.id)}">view</a>
  13. </li>
  14. </c:forEach>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement