JARCH SHOWCASE
JARCH SHOWCASE
Ring Ring is a data display component with a circular animation.

Basic Ring

  • Ford
  • Audi
  • BMW
  • Fiat
  • Mercedes

Images with Custom Easing

Car Info
<a:form id="form">
    <h3 style="margin-top: 0">Basic Ring</h3>
    <a:ring id="basic" value="#{ringView.cars}" var="car">
        <a:outputPanel style="text-align: center;" layout="block">
            #{car.brand}
            <br />
            <a:commandButton update=":form:carDetail" icon="ui-icon-search" title="View" oncomplete="PF('carDialog').show();">
                <f:setPropertyActionListener value="#{car}" target="#{ringView.selectedCar}" />
            </a:commandButton>
        </a:outputPanel>
    </a:ring>

    <h3>Images with Custom Easing</h3>
    <a:ring id="custom" value="#{ringView.cars}" var="car" styleClass="image-ring" easing="easeInOutBack">
        <a:graphicImage id="img" name="/demo/images/car/#{car.brand}-big.gif" />
    </a:ring>

    <a:dialog header="Car Info" widgetVar="carDialog" modal="true" showEffect="fade" hideEffect="fade" resizable="false" width="170">
        <a:outputPanel id="carDetail" style="text-align:center;" layout="block">
            <a:panelGrid  columns="2" rendered="#{not empty ringView.selectedCar}" columnClasses="value">
                <f:facet name="header">
                    <a:graphicImage name="demo/images/car/#{ringView.selectedCar.brand}-big.gif" />
                </f:facet>

                <h:outputText value="Id:" />
                <h:outputText value="#{ringView.selectedCar.id}" />

                <h:outputText value="Year" />
                <h:outputText value="#{ringView.selectedCar.year}" />

                <h:outputText value="Brand: " />
                <h:outputText value="#{ringView.selectedCar.brand}" />

                <h:outputText value="Color:" />
                <h:outputText value="#{ringView.selectedCar.color}" style="color:#{ringView.selectedCar.color}" />
            </a:panelGrid>
        </a:outputPanel>
    </a:dialog>
</a:form>
                
JARCH, Copyright © 2022 All rights reserved. Running JARCH 24.3.0-SNAPSHOT on PrimeFaces-12.0.0 on Mojarra-2.3.13.