Focus

Focus manages element focus in forms. By default first visible and enabled input element(e.g. text, textarea, select) is chosen to receive focus automatically. It is also possible to explicitly declare the component to receive focus via the for attribute. Focus is also aware of failed validations, first invalid input component receives a focus automatically.

Documentation
Register
<h:form>
    <p:panel id="panel" header="Register">

        <p:focus context="panel"/>

        <p:messages />

        <h:panelGrid columns="3">
            <p:outputLabel for="username" value="Username" />
            <p:inputText id="username" value="#{focusView.username}" required="true" label="Firstname">
                <f:validateLength minimum="2" />
            </p:inputText>
            <p:message for="username" />

            <p:outputLabel for="email" value="Email" />
            <p:inputText id="email" value="#{focusView.email}" required="true" label="Surname"/>
            <p:message for="email" />
        </h:panelGrid>

        <p:commandButton id="submitButton" value="Save" update="@parent" action="#{focusView.save}" />
    </p:panel>
</h:form>

FREE THEMES

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

nova-light Nova-Light
nova-dark Nova-Dark
nova-colored Nova-Colored
luna-blue Luna-Blue
luna-amber Luna-Amber
luna-green Luna-Green
luna-pink Luna-Pink
omega Omega

PREMIUM TEMPLATES

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