DataScroller - Loader

A custom component can be used instead to load data on demand instead of the scroll event.

Documentation
Scroll Down to Load More Cars
  • Id: 94d5101e
    Year: 1980
    Color: Orange
  • Id: 52683920
    Year: 1988
    Color: Black
  • Id: 6ab8b4bf
    Year: 1980
    Color: Yellow
  • Id: 69379c0d
    Year: 1963
    Color: Blue
  • Id: 5d570bab
    Year: 1974
    Color: Yellow
  • Id: f8089a63
    Year: 1997
    Color: Green
  • Id: 6cea40b2
    Year: 1982
    Color: Maroon
  • Id: f8d1a355
    Year: 2002
    Color: Green
  • Id: 3f2a9c94
    Year: 1961
    Color: Green
  • Id: 19f704fc
    Year: 1970
    Color: Brown
<style type="text/css">
    .logo {
        width: 5%
    }
    
    .detail {
        width: 95%;
        padding-left: 25px;
    }
    
    .detail td {
        font-size: 24px;
    }
    
    .ui-datascroller .ui-datascroller-item {
        border-bottom: 1px solid #A8A8A8;
        padding: 25px 10px;
        /* with the exported variables from Nova and Luna Themes*/
        border-bottom-color: var(--input-border-color, #A8A8A8);
    }
</style>


<h:form> 
    <p:dataScroller value="#{dataScrollerView.cars}" var="car" chunkSize="10">
        <f:facet name="header">
            Scroll Down to Load More Cars
        </f:facet>
        
        <f:facet name="loader">
            <p:commandButton type="button" value="More" icon="pi pi-chevron-circle-down"/>
        </f:facet>

        <h:panelGrid columns="2" style="width:100%" columnClasses="logo,detail">
            <p:graphicImage name="demo/images/car/#{car.brand}-big.gif" /> 

            <p:outputPanel>
                <h:panelGrid columns="2" cellpadding="5">
                    <h:outputText value="Id:" />
                    <h:outputText value="#{car.id}" style="font-weight: bold"/>

                    <h:outputText value="Year:" />
                    <h:outputText value="#{car.year}" style="font-weight: bold"/>

                    <h:outputText value="Color:" />
                    <h:outputText value="#{car.color}" style="font-weight: bold"/>
                </h:panelGrid>
            </p:outputPanel>
        </h:panelGrid>
    </p:dataScroller>
</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.