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 Lazy

DataTable has built-in support to deal with huge datasets. In order to enable lazy loading, a LazyDataModel needs to be implemented to query the datasource when pagination, sorting, filtering or live scrolling happens. This example uses an in-memory list to mimic a real datasource like a database. In a real application, loading should be executed with the query built using the information passed to the load method.

NameCountryCompanyRepresentative
Maria B Slusarski GermanyChapman, Ross E EsqXuxue Feng
Aika O Schemmer AustraliaTruhlar And Truhlar AttysOnyama Limba
Faith M Ruta SpainChanay, Jeffrey A EsqAmy Elsner
Leja L Nicka CanadaFeiner BrosBernardo Dominic
Faith A Albares GermanyChanay, Jeffrey A EsqStephen Shaw
Smith B Doe United KingdomChanay, Jeffrey A EsqAsiya Javayant
Juan C Vocelka SpainBuckley Miller WrightBernardo Dominic
Julie X Stenseth United KingdomChapman, Ross E EsqAsiya Javayant
Munro Q Malet United KingdomChemel, James L CpaIvan Magalhaes
Julie J Butt BrazilMorlong AssociatesAsiya Javayant

<div class="card">
    <h:form id="form">
        <p:dataTable var="customer" value="#{dtLazyView.lazyModel}" paginator="true" rows="10"
                     paginatorTemplate="{RowsPerPageDropdown} {FirstPageLink} {PreviousPageLink} {CurrentPageReport} {NextPageLink} {LastPageLink}"
                     rowsPerPageTemplate="5,10,15" selectionMode="single"
                     selection="#{dtLazyView.selectedCustomer}"
                     id="customerTable">
            <p:ajax event="rowSelect" listener="#{dtLazyView.onRowSelect}" update=":form:customerDetail"
                    oncomplete="PF('customerDialog').show()"/>
            <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.name}"/>
            </p:column>
            <p:column headerText="Company" sortBy="#{customer.company}" filterBy="#{customer.company}">
                <h:outputText value="#{customer.company}"/>
            </p:column>
            <p:column headerText="Representative" sortBy="#{customer.representative}"
                      filterBy="#{customer.representative}">
                <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:dataTable>

        <p:dialog header="Customer Detail" 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 dtLazyView.selectedCustomer}"
                             columnClasses="label,value">

                    <h:outputText value="Name:"/>
                    <h:outputText value="#{dtLazyView.selectedCustomer.name}"/>

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

                    <h:outputText value="Company:"/>
                    <h:outputText value="#{dtLazyView.selectedCustomer.company}"/>

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

                </p:panelGrid>
            </p:outputPanel>
        </p:dialog>
    </h:form>
</div>