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

DataTable Sticky Header

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

CodeNameCategoryPrice
250vm23ccGreen T-ShirtClothing$49.00
vb34btbg5Light Green T-ShirtClothing$49.00
4920nnc2dGreen EarbudsElectronics$89.00
mbvjkgip5Galaxy EarringsAccessories$34.00
zx23zc42cTeal T-ShirtClothing$49.00
bib36pfvmChakra BraceletAccessories$32.00
fldsmn31bGrey T-ShirtClothing$48.00
250vm23ccGreen T-ShirtClothing$49.00
pxpzczo23Purple BandFitness$79.00
2c42cb5cbPurple Gemstone NecklaceAccessories$45.00
mbvjkgip5Galaxy EarringsAccessories$34.00
zx23zc42cTeal T-ShirtClothing$49.00
tx125ck42Yoga MatFitness$20.00
acvx872gcYellow EarbudsElectronics$89.00
f230fh0g3Bamboo WatchAccessories$65.00
av2231fwgBrown PurseAccessories$120.00
vb34btbg5Light Green T-ShirtClothing$49.00
tx125ck42Yoga MatFitness$20.00
r23fwf2w3Pink PurseAccessories$110.00
gwuby345vYoga SetFitness$20.00
plb34234vGold Phone CaseAccessories$24.00
v435nn85nMini SpeakersClothing$85.00
mbvjkgip5Galaxy EarringsAccessories$34.00
2c42cb5cbPurple Gemstone NecklaceAccessories$45.00
zx23zc42cTeal T-ShirtClothing$49.00
pxpzczo23Purple BandFitness$79.00
f230fh0g3Bamboo WatchAccessories$65.00
zx23zc42cTeal T-ShirtClothing$49.00
2c42cb5cbPurple Gemstone NecklaceAccessories$45.00
bib36pfvmChakra BraceletAccessories$32.00
244wgerg2Blue T-ShirtClothing$29.00
av2231fwgBrown PurseAccessories$120.00
mbvjkgip5Galaxy EarringsAccessories$34.00
acvx872gcYellow EarbudsElectronics$89.00
r23fwf2w3Pink PurseAccessories$110.00
k8l6j58jlLime BandFitness$79.00
2c42cb5cbPurple Gemstone NecklaceAccessories$45.00
acvx872gcYellow EarbudsElectronics$89.00
acvx872gcYellow EarbudsElectronics$89.00
r23fwf2w3Pink PurseAccessories$110.00
zx23zc42cTeal T-ShirtClothing$49.00
vb34btbg5Light Green T-ShirtClothing$49.00
k8l6j58jlLime BandFitness$79.00
k8l6j58jlLime BandFitness$79.00
h456wer53BraceletAccessories$15.00
250vm23ccGreen T-ShirtClothing$49.00
gwuby345vYoga SetFitness$20.00
h456wer53BraceletAccessories$15.00
waas1x2asHeadphonesElectronics$175.00
k8l6j58jlLime BandFitness$79.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>