Locale

Language
English
English
English
French
German
German
German
Italian
Korean
Spanish
Catalan
Dutch
Portuguese
Portuguese
Arabic
Arabic
Bulgarian
Bangla
Bosnian
Czech
Greek
Estonian
Persian
Finnish
Danish
Hindi
Indonesian
Icelandic
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
Uzbek
Vietnamese
Chinese
Chinese

Input Style

Free Themes

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

Saga Saga
Vela Vela
Arya Arya

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

DataExporter Lazy

Lazy loading is fully supported when data is being exported.

Standard
Page Only
NameCountryCompanyRepresentative
Jennifer AmigonRussiaTruhlar And Truhlar AttysAmy Elsner
Adams MorascaGermanyChapman, Ross E EsqXuxue Feng
Leon OldroydBrazilRousseaux, Michael EsqAsiya Javayant
Maria MarrierBrazilKing, Christopher A EsqXuxue Feng
Greenwood BologniaSpainRangoni Of FlorenceStephen Shaw
Aruna FigeroaAustraliaBenton, John B JrAnna Fali
Octavia MaletUnited KingdomChanay, Jeffrey A EsqXuxue Feng
Misaki RoysterJapanKing, Christopher A EsqAmy Elsner
Aika InouyeJapanPrinting DimensionsOnyama Limba
Silvio SlusarskiJapanDorl, James J EsqOnyama Limba

<div class="card">
    <h:form>
       
        <div class="flex justify-content-between">
            <div>
                <h5>Standard</h5>
                <p:commandButton value="XLS" styleClass="mr-2 mb-2">
                    <p:dataExporter type="xls" target="tbl" fileName="customers"/>
                </p:commandButton>
    
                <p:commandButton value="XLSX" styleClass="mr-2 mb-2">
                    <p:dataExporter type="xlsxstream" target="tbl" fileName="customers"/>
                </p:commandButton>
    
                <p:commandButton value="PDF" styleClass="mr-2 mb-2">
                    <p:dataExporter type="pdf" target="tbl" fileName="customers"/>
                </p:commandButton>
    
                <p:commandButton value="CSV" styleClass="mr-2 mb-2">
                    <p:dataExporter type="csv" target="tbl" fileName="customers" />
                </p:commandButton>
    
                <p:commandButton value="XML" styleClass="mr-2 mb-2">
                    <p:dataExporter type="xml" target="tbl" fileName="customers"/>
                </p:commandButton>
    
                <p:commandButton value="TXT" styleClass="mr-2 mb-2">
                    <p:dataExporter type="txt" target="tbl" fileName="customers" exporter="#{dataExporterView.textExporter}"/>
                </p:commandButton>
            </div>

            <div>
                <h5>Page Only</h5>
                <p:commandButton value="XLS" styleClass="mr-2 mb-2 ui-button-outlined">
                    <p:dataExporter type="xls" target="tbl" fileName="customers" pageOnly="true"/>
                </p:commandButton>

                <p:commandButton value="XLSX" styleClass="mr-2 mb-2 ui-button-outlined">
                    <p:dataExporter type="xlsxstream" target="tbl" fileName="customers" pageOnly="true"/>
                </p:commandButton>

                <p:commandButton value="PDF" styleClass="mr-2 mb-2 ui-button-outlined">
                    <p:dataExporter type="pdf" target="tbl" fileName="customers" pageOnly="true"/>
                </p:commandButton>

                <p:commandButton value="CSV" styleClass="mr-2 mb-2 ui-button-outlined">
                    <p:dataExporter type="csv" target="tbl" fileName="customers" pageOnly="true"/>
                </p:commandButton>

                <p:commandButton value="XML" styleClass="mr-2 mb-2 ui-button-outlined">
                    <p:dataExporter type="xml" target="tbl" fileName="customers" pageOnly="true"/>
                </p:commandButton>

                <p:commandButton value="TXT" styleClass="mr-2 mb-2 ui-button-outlined">
                    <p:dataExporter type="txt" target="tbl" fileName="customers" pageOnly="true"
                                    exporter="#{dataExporterView.textExporter}"/>
                </p:commandButton>
            </div>
        </div>

        <p:dataTable id="tbl" var="customer" value="#{deLazyView.lazyModel}"
                     sortMode="single" filteredValue="#{deLazyView.filteredCustomers}"
                     paginatorTemplate="{CurrentPageReport} {FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink} {Exporters}"
                     paginator="true" rows="10" styleClass="mt-2">

            <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}">
                <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>
    </h:form>
</div>