Advertisement
Guest User

Untitled

a guest
Nov 21st, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. <?xml version='1.0' encoding='UTF-8' ?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml"
  4. xmlns:h="http://xmlns.jcp.org/jsf/html"
  5. xmlns:f="http://xmlns.jcp.org/jsf/core">
  6. <h:head>
  7. <title>Facelet Title</title>
  8. </h:head>
  9. <f:event listener="#{productManagedBean.loadProductsPreRender}"
  10. type="preRenderView">
  11. </f:event>
  12. <h:body>
  13. <h:form>
  14. <h:outputText value="No products." rendered="#{productManagedBean.products.size()==0}"/>
  15. <h:dataTable value="#{productManagedBean.products}" var="item" rendered="#{productManagedBean.products.size()>0}">
  16. <h:column>
  17. <f:facet name="header">
  18. <h:outputText value="ID"/>
  19. </f:facet>
  20. <h:outputText value="#{item.id}"/>
  21. </h:column>
  22. <h:column>
  23. <f:facet name="header">
  24. <h:outputText value="NAME"/>
  25. </f:facet>
  26. <h:outputText value="#{item.name}"/>
  27. </h:column>
  28. <h:column>
  29. <f:facet name="header">
  30. <h:outputText value="CATEGORY"/>
  31. </f:facet>
  32. <h:outputText value="#{item.category.name}"/>
  33. </h:column>
  34. </h:dataTable>
  35. <h:commandButton value="Create new product" action="#{productManagedBean.prepareCreateProduct()}"/>
  36. </h:form>
  37. </h:body>
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement