Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version='1.0' encoding='UTF-8' ?>
- <!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <ui:composition xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
- template="./layout/default.xhtml"
- xmlns:p="http://primefaces.org/ui"
- xmlns:h="http://xmlns.jcp.org/jsf/html">
- <ui:define name="title">
- Search Customers
- </ui:define>
- <ui:define name="content">
- <p:dataTable var="customer"
- value="#{customerManagedBean.customers}"
- resizableColumns="true">
- <p:column headerText="Id">
- <h:outputText value="#{customer.id}"/>
- </p:column>
- <p:column headerText="Name">
- <h:outputText value="#{customer.name}"/>
- </p:column>
- <p:column headerText="Gender">
- <h:outputText value="Female" rendered="#{customer.gender == 1}"/>
- <h:outputText value="Male" rendered="#{customer.gender == 2}"/>
- </p:column>
- <p:column headerText="DOB">
- <h:outputText value="#{customer.dob}"/>
- </p:column>
- <p:column headerText="DOB">
- <h:outputText value="#{customer.created}"/>
- </p:column>
- </p:dataTable>
- </ui:define>
- </ui:composition>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement