Locale

Change the locale of the datepicker, schedule and client side validation messages.

Language
English
French
German
Italian
Korean
Spanish
Catalan
Dutch
Portuguese
Portuguese
Arabic
Czech
Greek
Persian
Hindi
Indonesian
Croatian
Japanese
Hungarian
Hebrew
Georgian
Lithuanian
Latvian
Norwegian
Polish
Romanian
Russian
Slovak
Slovenian
Serbian
Swedish
Turkish
Ukrainian
Vietnamese
Chinese
Chinese

Input Style

Free Themes

Built-in component themes created by the PrimeFaces Theme Designer.

PrimeOne Design

Saga Saga
Vela Vela
Arya Arya

Premium Themes

Premium themes are only available exclusively for PrimeFaces Theme Designer subscribers and therefore not included in PrimeFaces core.

Bootstrap light blue and dark blue themes are also included in PrimeFaces 10.x builds for Elite subscribers.

bootstrap4-blue-light Bootstrap Blue
bootstrap4-purple-light Bootstrap Purple
bootstrap4-blue-dark Bootstrap Blue
bootstrap4-purple-dark Bootstrap Purple

Legacy Free Themes

Luna Amber Luna Amber
Luna Blue Luna Blue
Luna Green Luna Green
Luna Pink Luna Pink
Nova Nova
Nova Nova Alt
Nova Nova Accent

PREMIUM TEMPLATES

Create awesome applications in no time using the premium templates and impress your users.

DataTable Multi View State

MultiViewState (MVS) feature enables DataTable to maintain its state across pages by setting multiViewState attribute to true. In this demo, manipulate DataTable with pagination, sorting, filtering and selection, then visit another page and then come back to this page. DataTable state should remain as you've left it.

Basic
Search all fields:
NameCountryRepresentativeStatus
Misaki C Amigon IndiaXuxue Feng QUALIFIED
Kaitlin T Dilliard ArgentinaAnna Fali RENEWAL
Jeanfrancois Z Iturbide FranceElwin Sharvill QUALIFIED
Wickens L Kusko BrazilXuxue Feng PROPOSAL
Octavia P Malet GermanyAmy Elsner PROPOSAL
Aditya N Flosi SpainBernardo Dominic RENEWAL
David G Shinko United KingdomXuxue Feng RENEWAL
Leja S Malet United KingdomIvan Magalhaes RENEWAL
Wickens J Whobrey CanadaIvan Magalhaes NEW
Antonio C Maclead GermanyBernardo Dominic NEW

Lazy Loading
NameCountryRepresentativeStatus
Octavia D Briddick BrazilBernardo Dominic QUALIFIED
Maria R Slusarski BrazilIoni Bowcher QUALIFIED
Chavez J Butt BrazilAnna Fali PROPOSAL
Nicolas H Bolognia ItalyIoni Bowcher PROPOSAL
James X Marrier ItalyBernardo Dominic RENEWAL
Juan D Perin FranceAmy Elsner UNQUALIFIED
Francesco B Morasca AustraliaIvan Magalhaes NEW
Maisha A Figeroa GermanyAmy Elsner NEGOTIATION
Stacey H Saylors CanadaIoni Bowcher NEGOTIATION
Maria X Schemmer SpainAnna Fali NEW

<style>
    .ui-datatable .ui-datatable-header {
        text-align: right !important;
    }

    .ui-selectcheckboxmenu-panel .ui-selectcheckboxmenu-header .ui-chkbox {
        display: none;
    }
</style>

<h:form id="form">

    <p:messages id="messages"/>

    <div class="card">
        <h5>Basic</h5>
        <p:dataTable id="tableStateDT" var="customer" value="#{dtMultiViewStateView.customers}"
                     widgetVar="customersTable" multiViewState="true" rows="10" paginator="true"
                     paginatorTemplate="{CurrentPageReport} {FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink} {RowsPerPageDropdown}"
                     rowsPerPageTemplate="5,10,15" selectionMode="single"
                     selection="#{dtMultiViewStateView.selectedCustomer}" rowKey="#{customer.id}"
                     emptyMessage="No customers found with given criteria"
                     filteredValue="#{dtMultiViewStateView.filteredCustomers}">

            <f:facet name="header">
                <p:outputPanel>
                    <h:outputText value="Search all fields:"/>
                    <p:inputText id="globalFilter" onkeyup="PF('customersTable').filter()" style="width:150px"
                                 placeholder="Enter keyword"/>
                </p:outputPanel>
            </f:facet>

            <p:ajax event="rowSelect" update=":form:customerDetail" oncomplete="PF('customerDialog').show()"/>

            <p:column headerText="Name" filterBy="#{customer.name}" sortBy="#{customer.name}"
                      filterMatchMode="contains">
                <h:outputText value="#{customer.name}"/>
            </p:column>

            <p:column headerText="Country" filterBy="#{customer.country.name}" sortBy="#{customer.country.name}"
                      filterMatchMode="startsWith">
                <span class="flag flag-#{customer.country.code}" style="width: 30px; height: 20px"/>
                <h:outputText style="vertical-align: middle; margin-left: .5rem"
                              value="#{customer.country.name}"/>
            </p:column>

            <p:column headerText="Representative" filterBy="#{customer.representative.name}"
                      sortBy="#{customer.representative.name}" filterMatchMode="startsWith">
                <p:graphicImage name="images/avatar/#{customer.representative.image}" library="demo"
                                width="32" style="vertical-align: middle"/>
                <h:outputText style="vertical-align: middle; margin-left: .5rem"
                              value="#{customer.representative.name}"/>
            </p:column>

            <p:column headerText="Status" filterBy="#{customer.status}" sortBy="#{customer.status}"
                      filterMatchMode="exact">
                <f:facet name="filter">
                    <p:selectOneMenu onchange="PF('customersTable').filter()"
                                     style="width:100%; box-sizing: border-box;">
                        <f:selectItem itemLabel="Select One" itemValue="#{null}" noSelectionOption="true"/>
                        <f:selectItems value="#{dtMultiViewStateView.customerStatus}"/>
                    </p:selectOneMenu>
                </f:facet>
                <span class="customer-badge status-#{customer.status.name().toLowerCase()}">#{customer.status}</span>
            </p:column>

            <f:facet name="paginatorTopLeft">
                <p:commandButton value="Clear table state" action="#{dtMultiViewStateView.clearMultiViewState}"
                                 update="@form"/>
            </f:facet>
        </p:dataTable>
    </div>

    <br/>

    <div class="card">
        <h5>Lazy Loading</h5>
        <p:dataTable var="customer" value="#{dtLazyView.lazyModel}" paginator="true" rows="10"
                     paginatorTemplate="{RowsPerPageDropdown} {FirstPageLink} {PreviousPageLink} {CurrentPageReport} {NextPageLink} {LastPageLink}"
                     rowsPerPageTemplate="5,10,15" id="customerTable" multiViewState="true">
            <p:column headerText="Name" sortBy="#{customer.name}" filterBy="#{customer.name}">
                <h:outputText value="#{customer.name}"/>
            </p:column>
            <p:column headerText="Country" sortBy="#{customer.country}" filterBy="#{customer.country}">
                <span class="flag flag-#{customer.country.code}" style="width: 30px; height: 20px"/>
                <h:outputText style="vertical-align: middle; margin-left: .5rem" value="#{customer.country}"/>
            </p:column>

            <p:column headerText="Representative" sortBy="#{customer.representative}"
                      filterBy="#{customer.representative}" filterMatchMode="startsWith">
                <p:graphicImage name="images/avatar/#{customer.representative.image}" library="demo"
                                width="32" style="vertical-align: middle"/>
                <h:outputText style="vertical-align: middle; margin-left: .5rem"
                              value="#{customer.representative.name}"/>
            </p:column>

            <p:column headerText="Status" sortBy="#{customer.status}" filterBy="#{customer.status}">
                <span class="customer-badge status-#{customer.status.name().toLowerCase()}">#{customer.status}</span>
            </p:column>

            <f:facet name="paginatorTopLeft">
                <p:commandButton value="Clear table state" action="#{dtMultiViewStateView.clearMultiViewState}"
                                 update="@form"/>
            </f:facet>
        </p:dataTable>
    </div>

    <p:dialog header="Customer Info" widgetVar="customerDialog" modal="true" showEffect="fade" hideEffect="fade"
              resizable="false">
        <p:outputPanel id="customerDetail" style="text-align:center;">
            <p:panelGrid columns="2" rendered="#{not empty dtMultiViewStateView.selectedCustomer}"
                         columnClasses="label,value">
                <h:outputText value="Name:"/>
                <h:outputText value="#{dtMultiViewStateView.selectedCustomer.name}"/>

                <h:outputText value="Country"/>
                <p:column>
                    <span class="flag flag-#{dtMultiViewStateView.selectedCustomer.country.code}"
                          style="width: 30px; height: 20px"/>
                    <h:outputText style="vertical-align: middle; margin-left: .5rem"
                                  value="#{dtMultiViewStateView.selectedCustomer.name}"/>
                </p:column>

                <h:outputText value="Representative"/>
                <p:column>
                    <p:graphicImage
                            name="images/avatar/#{dtMultiViewStateView.selectedCustomer.representative.image}"
                            library="demo"
                            width="32" style="vertical-align: middle"/>
                    <h:outputText style="vertical-align: middle; margin-left: .5rem"
                                  value="#{dtMultiViewStateView.selectedCustomer.representative}"/>
                </p:column>

                <h:outputText value="Status:"/>
                <span class="customer-badge status-#{dtMultiViewStateView.selectedCustomer.status.name().toLowerCase()}">#{dtMultiViewStateView.selectedCustomer.status}</span>
            </p:panelGrid>
        </p:outputPanel>
    </p:dialog>

</h:form>