2 Replies Latest reply on Aug 5, 2008 4:07 AM by ilya_shaikovsky

    Problem with rich:dataScroller

      I wonder how to set current page in dataScroller in managed bean when I come back to page. What am I doing wrong?!

      jsp:
      <rich:datascroller align="center" for="list" maxPages="20" binding="#{bean.scroll1}" page="#{bean.pageNumber}" id="sc1" reRender="sc2"/>

      bean:
      scroll1.setPageIndexVar(String.valueOf(page));

      Thanks,for all responses.

        • 1. Re: Problem with rich:dataScroller

          We do it a different way where we inject the uicomponent into the bean using seam, like
          @In(value="#{uicomponent[idOfDataScroller]}"
          private transient UIDatascroller scroller;

          where the UIComponent is the org.richfaces component.

          Then in the code we do a....
          scroller.setPage("nameOfFacetInRichDataScroller");

          But in your case I would have thought the value of the page property on the rich:datascroller should do the job.
          Are you rerendering the "list".

          I have seen the error before where you set the page but it does not get propergated back to the page, havent figured it out as yet.

          • 2. Re: Problem with rich:dataScroller
            ilya_shaikovsky

            you should use page binding instead of pageIndexVar which is an attribute to define request scope variable for page access to current index(like var in dataTable).