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

Themes

PrimeUIX
Aura Light Emerald Aura Light Emerald
Aura Dark Emerald Aura Dark Emerald
PrimeOne
Saga Blue Saga Blue
Vela Blue Vela Blue
Arya Blue Arya Blue
Bootstrap
Bootstrap Blue Light Bootstrap Blue Light
Bootstrap Purple Light Bootstrap Purple Light
Bootstrap Blue Dark Bootstrap Blue Dark
Bootstrap Purple Dark Bootstrap Purple Dark
Material Design
Material Indigo Light Material Indigo Light
Material Deep Purple Light Material Deep Purple Light
Material Indigo Dark Material Indigo Dark
Material Deep Purple Dark Material Deep Purple Dark
Material Design Compact
Material Compact Indigo Light Material Compact Indigo Light
Material Compact Deep Purple Light Material Compact Deep Purple Light
Material Compact Indigo Dark Material Compact Indigo Dark
Material Compact Deep Purple Dark Material Compact Deep Purple Dark
Legacy
Nova Light Nova Light
Nova Dark Nova Dark
Nova Colored Nova Colored
Luna Amber Luna Amber
Luna Blue Luna Blue
Luna Green Luna Green
Luna Pink Luna Pink

SlideMenu

SlideMenu displays nested submenus with a slide animation.

SlideMenu Tag Documentation

SlideMenu is used to display nested submenus with sliding animation.

NameTypeRequiredDefaultDescription
id String false generated Unique identifier of the component in a namingContainer.
rendered boolean false true Boolean value to specify the rendering of the component, when set to false component will not be rendered.
binding UIComponent false generated An EL expression referring to a server side UIComponent instance in a backing bean.
widgetVar String false generated ('widget_' + componentClientId) Name of the client side widget.
appendTo String false @(body) Search expression for the element to which the menu overlay is appended. Only used when overlay is set to true.
at String false Corner of trigger to align with menu element.
autoDisplay boolean false true Defines whether the first level of submenus will be displayed on mouseover or click event.
backLabel String false Back Text for back link.
dir String false ltr Defines text direction, valid values are ltr and rtl.
hideDelay int false 0 Delay in milliseconds before hiding the submenu, if 0 not hidden until document.click().
model MenuModel false MenuModel instance to create menus programmatically
my String false Corner of menu to align with trigger element.
overlay boolean false false Defines positioning, when enabled menu is displayed with absolute position relative to the trigger.
showDelay int false 0 Delay in milliseconds before displaying the submenu. Default is 0 meaning immediate.
style String false Inline style of the component.
styleClass String false Style class of the component.
tabindex String false 0 Position of the element in the tabbing order.
toggleEvent String false Event to toggle the submenus, valid values are "hover" and "click".
trigger String false Target component to attach the overlay menu.
triggerEvent String false click Event to show the dynamic positioned menu.
Loading...
Tag DocumentationNew DocumentationNew Documentation JSDoc

Usage


<div class="card">
    <h:form>
        <p:growl id="messages" showDetail="true"/>

        <h5 class="mt-0">Inline</h5>
        <p:slideMenu style="width:200px">
            <p:submenu label="Options">
                <p:menuitem value="Save (Non-Ajax)" action="#{menuView.save}" update="messages" ajax="false"
                            icon="pi pi-save"/>
                <p:menuitem value="Update" action="#{menuView.update}" update="messages" icon="pi pi-refresh"/>
                <p:menuitem value="Delete" action="#{menuView.delete}" update="messages" icon="pi pi-times"/>
            </p:submenu>
            <p:submenu label="Navigations">
                <p:menuitem value="Website" url="http://www.primefaces.org" icon="pi pi-external-link"/>
                <p:menuitem value="Internal" outcome="/ui/menu/menubar" icon="pi pi-upload"/>
            </p:submenu>
        </p:slideMenu>
        
        <h5>Overlay</h5>
        <p:commandButton id="dynaButton" value="Show" type="button" icon="pi pi-home"/>
        <p:slideMenu overlay="true" trigger="dynaButton" my="left top" at="left bottom" style="width:180px">
            <p:submenu label="Options">
                <p:menuitem value="Save (Non-Ajax)" action="#{menuView.save}" update="messages" ajax="false"
                            icon="pi pi-save"/>
                <p:menuitem value="Update" action="#{menuView.update}" update="messages" icon="pi pi-refresh"/>
                <p:menuitem value="Delete" action="#{menuView.delete}" update="messages" icon="pi pi-times"/>
            </p:submenu>
            <p:submenu label="Navigations">
                <p:menuitem value="Website" url="http://www.primefaces.org" icon="pi pi-external-link"/>
                <p:menuitem value="Internal" outcome="/ui/menu/menubar" icon="pi pi-upload"/>
            </p:submenu>
        </p:slideMenu>
    </h:form>
</div>