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 L Foller SpainBernardo Dominic NEW
Tony D Poquette FranceIoni Bowcher NEGOTIATION
Aditya C Royster United KingdomElwin Sharvill RENEWAL
Wickens H Rim IndiaAmy Elsner UNQUALIFIED
Jefferson J Saylors ArgentinaElwin Sharvill UNQUALIFIED
Julie K Briddick RussiaOnyama Limba QUALIFIED
Jones S Ostrosky IndiaOnyama Limba NEGOTIATION
Clifford F Butt ArgentinaBernardo Dominic NEGOTIATION
Kaitlin V Paprocki ItalyAsiya Javayant PROPOSAL
Aika O Vocelka CanadaOnyama Limba UNQUALIFIED

Lazy Loading
NameCountryRepresentativeStatus
Isabel P Ostrosky IndiaIvan Magalhaes NEGOTIATION
Alejandro K Royster ItalyElwin Sharvill RENEWAL
Emily I Paprocki BrazilAsiya Javayant NEGOTIATION
Antonio Y Flosi ItalyAmy Elsner RENEWAL
Costa N Chui GermanyStephen Shaw RENEWAL
Kaitlin K Ostrosky GermanyIoni Bowcher PROPOSAL
Aditya A Kolmetz ItalyAmy Elsner QUALIFIED
Greenwood G Glick CanadaElwin Sharvill NEW
Mayumi D Perin CanadaOnyama Limba PROPOSAL
Adams M Gaucho United KingdomIvan Magalhaes PROPOSAL

<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>