Mike,
You do not need to set "first" to get navigation to work.
How many records does your userJobsTable have?
Are you saying that table does not navigate to the new range when
you click "next"?
Regards,
Max Starets
mikeatx wrote:
Hi,
I'm using Trinidad components, I try to display a table with range
navigation but the range navigation don't work, the first range is always
displayed. Must I implement some business myself?
Here is my jspx code:
<tr:table value="#{jobScheduler.userJobsTable}"
var="row"
emptyText="No rows"
rowBandingInterval="1"
rows="3">
<tr:column headerText="N°">
<tr:outputText value="#{row.job}"/>
</tr:column>
</tr:table>
The userJobsTable property is a java.Util.List.
I know that there is a param first in the table tags, but I don't know,
which value I must set to it, ...
Thanks in advance.
Mike