Hi friends, I am using jsf 1.1, with richfaces 3.1 in my application. The problem I am facing that whenever I am clicking on next option of pagination it is not working as it should. Some time it goes to next page and some time comes back to previous page.
I am using T:datascroller The code is as follows. <t:dataScroller id="scroll_1" for="conversationReport" rowsCountVar="rowsCountVar" firstRowIndexVar="firstRowIndexVar" lastRowIndexVar="lastRowIndexVar" pageCountVar="pageCount1" pageIndexVar="pageIndex1" paginator="true" paginatorMaxPages="5" paginatorTableClass="pagination-text" paginatorActiveColumnClass="pagination-textHover" renderFacetsIfSinglePage="false" immediate="true" style="float : right;" fastStep="10"> <f:facet name="previous"> <t:outputLabel value="pre"></t:outputLabel> </f:facet> <f:facet name="next"> <t:outputLabel value="nxt"></t:outputLabel> </f:facet> </t:dataScroller> The page does not contain any component of richfaces. Thanks in advance Sudhanshu