Locale

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

Language
English
French
German
Italian
Korean
Spanish
Catalan
Dutch
Portuguese
Portuguese
Arabic
Czech
Greek
Persian
Hindi
Indonesian
Croatian
Japanese
Hungarian
Hebrew
Georgian
Lithuanian
Latvian
Norwegian
Polish
Romanian
Russian
Slovak
Slovenian
Serbian
Swedish
Turkish
Ukrainian
Vietnamese
Chinese
Chinese

Input Style

Free Themes

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

PrimeOne Design

Saga Saga
Vela Vela
Arya Arya

Premium Themes

Premium themes are only available exclusively for PrimeFaces Theme Designer subscribers and therefore not included in PrimeFaces core.

Bootstrap light blue and dark blue themes are also included in PrimeFaces 10.x builds for Elite subscribers.

bootstrap4-blue-light Bootstrap Blue
bootstrap4-purple-light Bootstrap Purple
bootstrap4-blue-dark Bootstrap Blue
bootstrap4-purple-dark Bootstrap Purple

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

PREMIUM TEMPLATES

Create awesome applications in no time using the premium templates and impress your users.

OutputPanel

Output panel is a container element with several use cases such as autoUpdate and deferred loading. This example demonstrates the deferred loading feature with two modes where the content of the panel is loaded after the page itself is loaded to speed up initial page load time. There are two deferred modes, "load" (after page load) and "visible" (after page load and visible after page scroll). A progress indicator is also provided while loading the content.


<h:form>
    <div class="card" style="min-height: 175px">
        <p:outputPanel deferred="true">
            <h5>Loaded after page load</h5>
            <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
                Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
                Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
                Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
        </p:outputPanel>
    </div>

    <div class="card" style="min-height: 230px">
        <p:tabView dynamic="true">
            <p:tab title="Skeletons">
                <p:outputPanel deferred="true" class="mt-2">
                    <p:ajax event="load" listener="#{outputPanelView.loadData}"/>
                    <f:facet name="loading">
                        <p:skeleton width="200px" height="21px" class="mb-4"/>
                        <p:skeleton width="100%" height="42px"/>
                    </f:facet>
                    <h5>#{outputPanelView.data.title}</h5>
                    <p>#{outputPanelView.data.body}</p>
                </p:outputPanel>
            </p:tab>
            <p:tab title="Ajax / Loaded">
                <p:outputPanel deferred="true" loaded="#{not empty outputPanelView.data2}" class="mt-2">
                    <p:ajax event="load" listener="#{outputPanelView.loadData2}"/>
                    <f:facet name="loading">
                        <p:skeleton width="200px" height="21px" class="mb-4"/>
                        <p:skeleton width="100%" height="42px"/>
                    </f:facet>
                    <h5>#{outputPanelView.data2.title}</h5>
                    <p>#{outputPanelView.data2.body}</p>
                </p:outputPanel>
            </p:tab>
        </p:tabView>
    </div>

    <div style="height:1000px"></div>

    <div class="card">
        <p:outputPanel deferred="true" deferredMode="visible">
            <h5>Loaded after the panel becomes visible on page scroll</h5>
            <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
                Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
                Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
                Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
        </p:outputPanel>
    </div>
</h:form>