Locale

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

Language
English
English
English
French
German
German
German
Italian
Korean
Spanish
Catalan
Dutch
Portuguese
Portuguese
Arabic
Arabic
Bulgarian
Czech
Greek
Persian
Finnish
Danish
Hindi
Indonesian
Croatian
Japanese
Hungarian
Hebrew
Georgian
Central Kurdish
Khmer
Kyrgyz
Kazakh
Lithuanian
Latvian
Malay
Norwegian
Polish
Romanian
Russian
Slovak
Slovenian
Serbian
Serbian
Swedish
Thai
Turkish
Ukrainian
Vietnamese
Chinese
Chinese

Input Style

Themes

PrimeOne
Saga Saga
Vela Vela
Arya Arya
Bootstrap
bootstrap4-blue-light Bootstrap Blue
bootstrap4-purple-light Bootstrap Purple
bootstrap4-blue-dark Bootstrap Blue
bootstrap4-purple-dark Bootstrap Purple
Material Design
material-indigo-light Indigo
material-deeppurple-light' Deep Purple
material-indigo-dark Indigo
material-deeppurple-dark' Deep Purple
Material Design Compact
material-indigo-light Indigo
material-deeppurple-light' Deep Purple
material-indigo-dark Indigo
material-deeppurple-dark' Deep Purple

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
Aika I Stockham BrazilXuxue Feng NEGOTIATION
Johnson C Schemmer CanadaAnna Fali PROPOSAL
Mayumi F Campain AustraliaXuxue Feng NEW
Emily O Tollner IndiaAnna Fali UNQUALIFIED
Misaki X Chui RussiaAmy Elsner UNQUALIFIED
Maisha V Waycott GermanyStephen Shaw QUALIFIED
Mayumi K Gaucho GermanyIoni Bowcher UNQUALIFIED
Alejandro A Paprocki AustraliaIvan Magalhaes NEGOTIATION
Leon R Darakjy CanadaAnna Fali UNQUALIFIED
Faith X Gillian GermanyAmy Elsner QUALIFIED

Lazy Loading
NameCountryRepresentativeStatus
Aruna I Inouye CanadaStephen Shaw NEW
Kadeem J Figeroa AustraliaBernardo Dominic NEW
Smith T Briddick SpainStephen Shaw UNQUALIFIED
Faith M Royster ItalyStephen Shaw NEGOTIATION
Wickens C Waycott GermanyAsiya Javayant NEGOTIATION
Octavia E Malet BrazilAnna Fali PROPOSAL
Nicolas E Venere SpainOnyama Limba QUALIFIED
Jefferson B Stockham CanadaElwin Sharvill RENEWAL
Jones T Sergi JapanElwin Sharvill RENEWAL
Julie Y Stenseth AustraliaAmy Elsner UNQUALIFIED

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