hi,
i think i've read everything that is there to be read regarding dataTable and datascroller.
and yet, i still don't get it to work.
my request is pretty trivial: i got a java.util.List with, say, 100 entries and i want that List displayed in a table with 19 rows per page, thus scrolling through 10 pages.
it's not feasible -- the best i get are overly complex datamodels or listners which is absolutely an overkill and does not work anyway.
i got a snippet like that:
<h:form>
<rich:panel>
<rich:dataOrderedList value="#{objectsList.resultList}" var="cap" rows="5" id="table">
<h:outputText value="#{cap.PID}" />
</rich:dataOrderedList>
<rich:datascroller for="table" />
</rich:panel>
</h:form>
Which scope is the "objectsList" backing bean in?
- micke