Skip to content
Snippets Groups Projects
Select Git revision
  • 8f07f1fdd234c0ec8aa919b3680edfb81da52abb
  • master default protected
  • py
  • rmevec
  • tffm
  • approx
  • v0.1.5
  • v0.1.4
  • v0.1.3
9 results

README.md

Blame
  • index.xhtml 659 B
    <html xmlns="http://www.w3.org/1999/xhtml"
          xmlns:h="http://java.sun.com/jsf/html"
          xmlns:f="http://java.sun.com/jsf/core"
          xmlns:p="http://primefaces.org/ui">
    
    <h:head>
    
    </h:head>
    
    <h:body>
        <h3 style="text-align: center">#{viewPersonBean.message}</h3>
    
        <div class="card">
            <p:dataTable var="person" value="#{viewPersonBean.persons}">
                <p:column headerText="UUID">
                    <h:outputText value="#{person.uuid}"/>
                </p:column>
    
                <p:column headerText="Name">
                    <h:outputText value="#{person.name}"/>
                </p:column>
            </p:dataTable>
        </div>
    
    </h:body>
    </html>