Hello All,
I need help with the DataScroller of the DataTable
I have the following
<rich:dataTable value="#{userTableBean.dataList}" var="dataItem"
rowClasses="row1, row2" id="taskList" rows="2"
columnClasses="50,100,100,100"
width="350">
<f:facet name="header">
<rich:columnGroup>
<rich:column colspan="4">
<h:outputText value="Trouble Tickets opened" />
</rich:column>
<rich:column breakBefore="true">
<h:outputText value="Ticket Id" />
</rich:column>
</rich:columnGroup>
</f:facet>
<rich:column>
<h:outputText value="#{dataItem.userName}" />
</rich:column>
<rich:column>
<h:outputText value="#{dataItem.lastName}" />
</rich:column>
</rich:dataTable>
<rich:datascroller align="left" for="taskList" immediate="true" maxPages="20" />
Now as you see the datascroller ...
The issue is that .. when there is pagination .. i.e: there is scrolling when data doesnt fit.. when I click on the second index or third ...
it doesnt bring its results until the WHole page is refreshed ...
can any 1 help me with this ???
THANKS a lot