Create new RichFaces Documentation Jira issue

This will launch the RichFaces Jira page - to complete your feedback please login if needed, and submit the Jira.

JBoss.orgCommunity Documentation

6.6.9.  < rich:datascroller > available since 3.0.0

expand all
6.6.9.1. Description
6.6.9.2. Key Features
6.6.9.3. Details of Usage
6.6.9.4. Reference Data
6.6.9.5. Relevant Resources Links

The component designed for providing the functionality of tables scrolling using Ajax requests.


The <rich:datascroller> component provides table scrolling functionalitity the same as TOMAHAWK scroller but with Ajax requests usage.

The <rich:datascroller> component should be reRendered also with <rich:dataTable> when you changing filter in order to be updated according to the <rich:dataTable> current model.

The component should be placed into the footer of the parent table or be bound to it with the "for" attribute. Note, that "for" is evaluated on view build, not on view render, that is why it will ignore JSTL tags.

The table should also have the defined "rows" attribute limiting the quantity of inputted table rows.

The scroller could limit the maximum quantity of rendered links on the table pages with the help of the "maxPages" attribute.

Component provides two controllers groups for switching:

The controls of fast switching are created adding the facets component with the corresponding name:

Example:


 ...
<rich:datascroller for="table" maxPages="10">
          <f:facet name="first">
                    <h:outputText value="First"/>
          </f:facet>
          <f:facet name="last">
                    <h:outputText value="Last"/>
          </f:facet>
</rich:datascroller>
...

The screenshot shows one controller from each group.

There are also facets used to create the disabled states: "first_disabled", "last_disabled", "next_disabled", "previous_disabled", "fastforward_disabled", "fastrewind_disabled".

For the "fastforward"/"fastrewind" controls customization the additional "fastStep" attribute is used. The attribute indicates pages quantity to switch onto when fast scrolling is used.

The "page" is a value-binding attribute used to define and save the current page number. The example is placed below.

Example:


...
<h:form id="myForm">
    <rich:dataTable id="carList" rows="7" value="#{dataTableScrollerBean.allCars}" var="category">
        <f:facet name="header">
            <rich:columnGroup>
                <h:column>
                    <h:outputText value="Make" />
                </h:column>
                <h:column>
                    <h:outputText value="Model" />
                </h:column>
                <h:column>
                    <h:outputText value="Price" />
                </h:column>
            </rich:columnGroup>
        </f:facet>
        <h:column>
            <h:outputText value="#{category.make}" />
        </h:column>
        <h:column>
            <h:outputText value="#{category.model}" />
        </h:column>
        <h:column>
            <h:outputText value="#{category.price}" />
        </h:column>
    </rich:dataTable>
    <rich:datascroller id="sc2" for="carList" reRender="sc1" maxPages="7" page="#{dataTableScrollerBean.scrollerPage}" />
    <h:panelGrid>
        <h:panelGroup>
            <h:outputText value="Set current page number:" />
            <h:inputText value="#{dataTableScrollerBean.scrollerPage}" id="sc1" size="1"/>
            <h:commandButton value="Set" />
        </h:panelGroup>
    </h:panelGrid>
</h:form>
...

In the example above you can enter the page number you want and set it by clicking on the <h:commandButton> . By the way, if you use <rich:datascroller> page links the input field rerenders and current page number changes.

The result should be like below:


The "pageIndexVar" and "pagesVar" attributes define a request scope variables and provide an ability to show the current page and the number of pages in the <rich:datascroller> .

These attributes are used for definition the names of variables, that is used in the facet with name "pages" . An example can be found below:

Example:


...
<h:form>
    <rich:dataTable value="#{capitalsBean.capitals}" var="cap" rows="5">
        <rich:column>
            <h:outputText value="#{cap.name}" />
        </rich:column>
        <f:facet name="footer">
            <rich:datascroller pageIndexVar="pageIndex" pagesVar="pages">
                <f:facet name="pages">
                    <h:outputText value="#{pageIndex} / #{pages}" />
                </f:facet>
            </rich:datascroller>
        </f:facet>
    </rich:dataTable>
</h:form>
...

It's possible to insert optional separators between controls. For this purpose use a "controlsSeparator" facet. An example is placed below.


 ...
<f:facet name="controlsSeparator">
          <h:graphicImage value="/image/sep.png"/>
</f:facet>
...

Starting from 3.2.1 of RichFaces multiple <rich:datascroller> instances behavior and page bindings are corrected. Incorrect page after model changes handling is added. Phase Listener called before RenderResponce scans the page for the <rich:datascroller> and performs the following operations:

  • Checks if the <rich:datascroller> is rendered. (If the checking generates an exception, the <rich:datascroller> is considered to be not rendered )

  • If the <rich:datascroller> is rendered - the table to which the <rich:datascroller> is attached gets the value of the page attribute of <rich:datascroller> .

Information about the "process" attribute usage you can find in the " Decide what to process " guide section.

Note:

Make sure, that all <rich:datascroller> components, defined for a table, have same values for all "page" attributes. The page, specified in the last "page" , will be rendered in browser.

Table of <rich:datascroller> attributes.






You can find all necessary information about style classes redefinition in Definition of Custom Style Classes section.

On the component LiveDemo page you can see the example of <rich:datascroller> usage and sources for the given example.

The solution about how to do correct pagination using datascroller (load a part of data from database) can be found on the RichFaces Users Forum.

How to use <rich:dataTable> and <rich:datascroller> in a context of Extended Data Model see on the RichFaces Users Forum.

This article describes how to solve <rich:datatable> update problem when <rich:datascroller> used.

Here you can find out how to use pair of <rich:datascrollers> outside the any dataTable.

The solution about how to make <rich:datascroller> be updated after sorting/filtering can be found on Data Iteration Components FAQ.