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.

DragDrop Draggable

Draggable adds dragdrop capability to a component.

Draggable Panel
A regular p:panel.
Handle
Can only be dragged with my header.
Horizontal Only
Can only be dragged horizontally.
Vertical Only
Can only be dragged vertically
Revert
Will be reverted back to my original position
Opacity
Opacity is lower when I'm being dragged
Grid
Dragged in grid mode
Restricted
Restricted to my parent's boundaries

<style>
    .ui-panel {
        margin: 15px;
        width: 300px;
    }
</style>


<div class="card">
    <p:panel id="pnl" header="Draggable Panel">
        <h:outputText value="A regular p:panel."/>
    </p:panel>
    <p:draggable for="pnl"/>

    <p:panel id="handlepnl" header="Handle">
        <h:outputText value="Can only be dragged with my header."/>
    </p:panel>
    <p:draggable for="handlepnl" handle=".ui-panel-titlebar"/>

    <p:panel id="hpnl" header="Horizontal Only">
        <h:outputText value="Can only be dragged horizontally."/>
    </p:panel>
    <p:draggable for="hpnl" axis="x"/>

    <p:panel id="vpnl" header="Vertical Only">
        <h:outputText value="Can only be dragged vertically"/>
    </p:panel>
    <p:draggable for="vpnl" axis="y"/>

    <p:panel id="rpnl" header="Revert">
        <h:outputText value="Will be reverted back to my original position"/>
    </p:panel>
    <p:draggable for="rpnl" revert="true"/>

    <p:panel id="opnl" header="Opacity">
        <h:outputText value="Opacity is lower when I'm being dragged"/>
    </p:panel>
    <p:draggable for="opnl" opacity="0.3"/>

    <p:panel id="gpnl" header="Grid">
        <h:outputText value="Dragged in grid mode"/>
    </p:panel>
    <p:draggable for="gpnl" grid="20,40"/>

    <p:outputPanel id="restrictPanel" layout="block"
                   style="width:400px;height:200px;border:1px solid var(--surface-d);margin-bottom:20px">
        <p:panel id="conpnl" header="Restricted">
            <h:outputText value="Restricted to my parent's boundaries"/>
        </p:panel>
    </p:outputPanel>
    <p:draggable for="conpnl" containment="parent"/>

    <p:graphicImage id="pic" name="demo/images/nature/nature10.jpg"/>
    <p:draggable for="pic"/>
</div>