JARCH SHOWCASE
JARCH SHOWCASE
OutputLabel OutputLabel is an extension to standard outputLabel component. Extended features are;
  • OutputLabel sets its value as the label of the target component to be displayed in validation errors so that target component does not need to define label attribute again.
  • Support for components with non-trivial markup like spinner, autocomplete, calendar and so on which are not supported by standard outputLabel.
  • Theme aware error styling when associated component is not valid.
  • Required field indicator.
Form
<a:form>
    <a:panel id="panel" header="Form" style="margin-bottom:10px;">
        <a:messages id="messages" />
        <h:panelGrid columns="2" cellpadding="5">
            <h:outputLabel for="name" value="Standard Label:" />
            <a:inputText id="name" required="true" />

            <a:outputLabel for="extended" value="Extended Label:" />
            <a:inputText id="extended" required="true" />

            <a:outputLabel for="number" value="Number:" />
            <a:spinner id="number" value="0"/>
        </h:panelGrid>
    </a:panel>

    <a:commandButton value="Submit" update="panel"  />
</a:form>
                
JARCH, Copyright © 2022 All rights reserved. Running JARCH 24.3.0-SNAPSHOT on PrimeFaces-12.0.0 on Mojarra-2.3.13.