| Author |
Help with rich:datascroller
|
bash bashtoko
Greenhorn
Joined: Jan 20, 2011
Posts: 14
|
|
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 utputText value="Trouble Tickets opened" />
</rich:column>
<rich:column breakBefore="true">
<h utputText value="Ticket Id" />
</rich:column>
</rich:columnGroup>
</f:facet>
<rich:column>
<h utputText value="#{dataItem.userName}" />
</rich:column>
<rich:column>
<h utputText 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
|
 |
Tim Holloway
Saloon Keeper
Joined: Jun 25, 2001
Posts: 14475
|
|
If you use the "Code" button on the editor, you can make this kind of stuff more readable.
By default, RichFaces isn't going to do partial page refreshes. If you want the table display to update without updating the entire page, you need to indicate that it's part of the page that gets re-rendered by supplying the reRender attribute on the control that submits the postback request.
|
Customer surveys are for companies who didn't pay proper attention to begin with.
|
 |
 |
|
|
subject: Help with rich:datascroller
|
|
|