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

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

Ajax Framework Search Expressions

Search Expression Framework extends the default search expressions by more keywords and allows the combine/nest expressions.

Search Form

<div class="card">
    <h:form>
        <p:panel id="panel" header="Search Form" styleClass="mb-3">
            <p:growl id="messages"/>

            <h:panelGrid columns="4" cellpadding="7">
                <h:outputLabel for="txt1" value="Text 1: *"/>
                <p:inputText id="txt1" value="#{searchView.text1}" required="true" label="Text 1" style="width: 12rem">
                    <f:validateLength minimum="2"/>
                </p:inputText>
                <p:message for="txt1"/>
                <h:outputText value="#{searchView.text1}"/>

                <h:outputLabel for="txt2" value="Text 2: *"/>
                <p:selectOneMenu id="txt2" value="#{searchView.text2}" required="true" label="Text 2" style="width: 12rem">
                    <f:selectItem itemLabel="Select One" itemValue="" noSelectionOption="true"/>
                    <f:selectItem itemLabel="Option 1" itemValue="1"/>
                    <f:selectItem itemLabel="Option 2" itemValue="2"/>
                    <f:selectItem itemLabel="Option 3" itemValue="3"/>
                </p:selectOneMenu>
                <p:message for="@previous"/>
                <h:outputText value="#{searchView.text2}"/>
            </h:panelGrid>
        </p:panel>

        <p:commandButton process="@parent:@parent" update="@form" value="Process: @parent:parent (Form)" styleClass="mr-2" />
            <p:commandButton process="@form:@child(1):txt1" update="@form"
                             value="Process: @form:@child(1):txt1 (Text 1)"/>
    </h:form>
</div>