JARCH SHOWCASE
JARCH SHOWCASE
Carousel Carousel displays data using a slide effect.
Car Info
<a:form id="form">
    <a:carousel value="#{carouselView.cars}" headerText="Responsive" var="car" itemStyle="text-align:center" responsive="true">
        <a:panelGrid columns="2" style="width:100%;margin:10px 0px" columnClasses="label,value" layout="grid" styleClass="ui-panelgrid-blank">
            <f:facet name="header">
                <a:graphicImage name="demo/images/car/#{car.brand}.gif"/>
            </f:facet>

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

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

            <h:outputText value="Color:" />
            <h:outputText value="#{car.color}" style="color:#{car.color}"/>

            <h:outputText value="Price" />
            <h:outputText value="$#{car.price}" />
        </a:panelGrid>

        <f:facet name="footer">
                In total there are #{fn:length(carouselView.cars)} cars.
        </f:facet>
    </a:carousel>

    <a:carousel value="#{carouselView.cars}" headerText="Custom" var="car" itemStyle="height:200px;text-align:center" numVisible="1" easing="easeOutBounce" style="width:250px" cricular="true">
        <h:panelGrid columns="2" style="width:100%" columnClasses="label,value">
            <f:facet name="header">
                <a:graphicImage name="demo/images/car/#{car.brand}.gif"/>
            </f:facet>

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

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

            <h:outputText value="Color:" />
            <h:outputText value="#{car.color}" style="color:#{car.color}"/>

            <h:outputText value="Price" />
            <h:outputText value="$#{car.price}" />

            <f:facet name="footer">
                <a:commandButton update=":form:carDetail" oncomplete="PF('carDialog').show()" icon="ui-icon-search">
                    <f:setPropertyActionListener value="#{car}" target="#{carouselView.selectedCar}" />
                </a:commandButton>
            </f:facet>
        </h:panelGrid>
    </a:carousel>

    <a:carousel numVisible="1" effect="easeInStrong" headerText="Tabs" style="margin-bottom:0">
        <a:tab title="Godfather Part I">
            <h:panelGrid columns="2" cellpadding="10">
                <a:graphicImage name="demo/images/godfather/godfather1.jpg" />
                <h:outputText
                    value="The story begins as Don Vito Corleone, the head of a New York Mafia family, oversees his daughter's wedding. 
                    His beloved son Michael has just come home from the war, but does not intend to become part of his father's business.
                    Through Michael's life the nature of the family business becomes clear. The business of the family is just like the head of the family, kind and benevolent to those who give respect, 
                    but given to ruthless violence whenever anything stands against the good of the family." />
            </h:panelGrid>
        </a:tab>
        <a:tab title="Godfather Part II">
            <h:panelGrid columns="2" cellpadding="10">
                <a:graphicImage name="demo/images/godfather/godfather2.jpg" />
                <h:outputText value="Francis Ford Coppola's legendary continuation and sequel to his landmark 1972 film, The_Godfather, parallels the young Vito Corleone's rise with his son Michael's spiritual fall, deepening The_Godfather's depiction of the dark side of the American dream. 
                In the early 1900s, the child Vito flees his Sicilian village for America after the local Mafia kills his family. Vito struggles to make a living, legally or illegally, for his wife and growing brood in Little Italy, 
                killing the local Black Hand Fanucci after he demands his customary cut of the tyro's business. With Fanucci gone, Vito's communal stature grows." />
            </h:panelGrid>
        </a:tab>
        <a:tab title="Godfather Part III">
            <h:panelGrid columns="2" cellpadding="10">
                <a:graphicImage name="demo/images/godfather/godfather3.jpg" />
                <h:outputText value="After a break of more than 15 years, director Francis Ford Coppola and writer Mario Puzo returned to the well for this third and final story of the fictional Corleone crime family. 
                    Two decades have passed, and crime kingpin Michael Corleone, now divorced from his wife Kay has nearly succeeded in keeping his promise that his family would one day be completely legitimate." />
            </h:panelGrid>
        </a:tab>
    </a:carousel>

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

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

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

                <h:outputText value="Color:" />
                <h:outputText value="#{carouselView.selectedCar.color}" style="color:#{carouselView.selectedCar.color}"/>

                <h:outputText value="Price" />
                <h:outputText value="$#{carouselView.selectedCar.price}" />
            </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.