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

Header of the datatable can be fixed to keep it in viewport during scroll.

CodeNameCategoryPrice
waas1x2asHeadphonesElectronics$175.00
gwuby345vYoga SetFitness$20.00
lm2tny2k4ShoesClothing$64.00
2c42cb5cbPurple Gemstone NecklaceAccessories$45.00
zz21cz3c1Blue BandFitness$79.00
gwuby345vYoga SetFitness$20.00
5k43kkk23Purple T-ShirtClothing$49.00
09zx9c0zcPainted Phone CaseAccessories$56.00
mbvjkgip5Galaxy EarringsAccessories$34.00
f230fh0g3Bamboo WatchAccessories$65.00
acvx872gcYellow EarbudsElectronics$89.00
244wgerg2Blue T-ShirtClothing$29.00
r23fwf2w3Pink PurseAccessories$110.00
r23fwf2w3Pink PurseAccessories$110.00
acvx872gcYellow EarbudsElectronics$89.00
vbb124btrGame ControllerElectronics$99.00
2c42cb5cbPurple Gemstone NecklaceAccessories$45.00
vbb124btrGame ControllerElectronics$99.00
09zx9c0zcPainted Phone CaseAccessories$56.00
zz21cz3c1Blue BandFitness$79.00
gwuby345vYoga SetFitness$20.00
bib36pfvmChakra BraceletAccessories$32.00
tx125ck42Yoga MatFitness$20.00
5k43kkk23Purple T-ShirtClothing$49.00
f230fh0g3Bamboo WatchAccessories$65.00
nvklal433Black WatchAccessories$72.00
vb34btbg5Light Green T-ShirtClothing$49.00
vbb124btrGame ControllerElectronics$99.00
nvklal433Black WatchAccessories$72.00
mbvjkgip5Galaxy EarringsAccessories$34.00
plb34234vGold Phone CaseAccessories$24.00
lm2tny2k4ShoesClothing$64.00
acvx872gcYellow EarbudsElectronics$89.00
h456wer53BraceletAccessories$15.00
bib36pfvmChakra BraceletAccessories$32.00
k8l6j58jlLime BandFitness$79.00
acvx872gcYellow EarbudsElectronics$89.00
vb34btbg5Light Green T-ShirtClothing$49.00
09zx9c0zcPainted Phone CaseAccessories$56.00
2c42cb5cbPurple Gemstone NecklaceAccessories$45.00
4920nnc2dGreen EarbudsElectronics$89.00
vb34btbg5Light Green T-ShirtClothing$49.00
244wgerg2Blue T-ShirtClothing$29.00
2c42cb5cbPurple Gemstone NecklaceAccessories$45.00
nvklal433Black WatchAccessories$72.00
4920nnc2dGreen EarbudsElectronics$89.00
pxpzczo23Purple BandFitness$79.00
h456wer53BraceletAccessories$15.00
5k43kkk23Purple T-ShirtClothing$49.00
gwuby345vYoga SetFitness$20.00

<div class="card">
    <p:dataTable var="product" value="#{dtStickyView.products}" stickyHeader="true" stickyTopAt=".layout-topbar">
        <p:column headerText="Code">
            <h:outputText value="#{product.code}"/>
        </p:column>
        <p:column headerText="Name">
            <h:outputText value="#{product.name}"/>
        </p:column>
        <p:column headerText="Category">
            <h:outputText value="#{product.category}"/>
        </p:column>
        <p:column headerText="Price">
            <h:outputText value="#{product.price}">
                <f:convertNumber type="currency" currencySymbol="$"/>
            </h:outputText>
        </p:column>
    </p:dataTable>
</div>