Locale

Language
English
English
English
French
German
German
Italian
Korean
Spanish
Catalan
Dutch
Portuguese
Portuguese
Arabic
Arabic
Bulgarian
Czech
Greek
Persian
Finnish
Danish
Hindi
Indonesian
Croatian
Japanese
Hungarian
Hebrew
Georgian
Central Kurdish
Khmer
Kyrgyz
Kazakh
Lithuanian
Latvian
Malay
Norwegian
Polish
Romanian
Russian
Slovak
Slovenian
Serbian
Swedish
Thai
Turkish
Ukrainian
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

ResetInput

Input components keep their local values at state when validation fails. ResetInput is used to clear the cached values from state so that components retrieve their values from the backing bean model instead.


<div class="card">
    <h:form id="form">
        <p:outputPanel id="panel" styleClass="mb-2">
            <h:panelGrid columns="3" cellpadding="7">
                <p:outputLabel for="text1" value="Text 1:"/>
                <p:inputText id="text1" value="#{resetInputView.text1}" required="true" label="Firstname">
                    <f:validateLength minimum="2"/>
                </p:inputText>
                <p:message for="text1"/>

                <p:outputLabel for="text2" value="Text 2:"/>
                <p:inputText id="text2" value="#{resetInputView.text2}" required="true" label="Surname"/>
                <p:message for="text2"/>
            </h:panelGrid>
        </p:outputPanel>

        <div class="flex justify-content-between">
            <p:commandButton value="Submit" update="panel" action="#{resetInputView.save}" styleClass="mr-2" />

            <div>
                <p:commandButton value="Reset Fail" update="panel" process="@this"
                                 action="#{resetInputView.resetFail}" styleClass="mr-2 ui-button-outlined"/>

                <p:commandButton value="Reset Tag" update="panel" process="@this" styleClass="mr-2 ui-button-outlined">
                    <p:resetInput target="panel"/>
                </p:commandButton>

                <p:commandButton value="Reset Code" update="panel" process="@this"
                                 action="#{resetInputView.reset}"
                                 styleClass="mr-2 ui-button-outlined"/>

                <p:commandButton value="Reset Non-Ajax" action="#{resetInputView.reset}" immediate="true"
                                 ajax="false" styleClass="mr-2 ui-button-outlined">
                    <p:resetInput target="panel"/>
                </p:commandButton>

                <p:commandButton value="Reset p:ajax">
                    <p:ajax update="panel" resetValues="true"/>
                </p:commandButton>
            </div>
        </div>
    </h:form>
</div>