Thanks Eric, but would the example give me the back, forward buttons and
in-between the "jump to" pages, for example, it looks like this: 
<< 1 2 3 4 5 6 >> 
I have the back and forward buttons working but getting the jump to a
certain number page will not work.

Tom K.


-----Original Message-----
From: Eric Noel [mailto:[EMAIL PROTECTED] 
Sent: Sunday, April 18, 2004 7:13 PM
To: Tomcat Users List
Subject: Re: [OT] Pager Tag Library v2.0 usage w/Tomcat 5

On 4/17/2004 10:05 AM, Tom K wrote:

> I have pagination working with Tomcat 5 through a bean. I like the
> “flexible” features that Pager Tag Library v2.0 has and would like to
> implement it in my jsp. I know I have everything configured correctly
> because I can get the paging to display but not more to the next or
> previous page.
>  
> Does anyone have an example code I can see. I just don’t understand
the
> examples well enough on their web site HYPERLINK
>
"http://jsptags.com/tags/navigation/pager/index.jsp"http://jsptags.com/t
> ags/navigation/pager/index.jsp
>  
>  
>  
>  
> TIA
>  
> Tom K.
<%@ taglib prefix="pg" uri="http://jsptags.com/tags/navigation/pager"; %>
<%-- rs/datasource here --%>

<c:if test="${rs.rowCount > 0}">
     <pg:pager maxIndexPages="10"
         maxPageItems="15"
         export="pagerPageNumber=pageNumber" >
     <c:forEach var="row" items="${rs.rows}" varStatus="lineInfo">
         <pg:item>
             <c:out value='${row.field1}'/>
         </pg:item>
     </c:forEach>
     <pg:index>
            <pg:first>
                <a href="<%= pageUrl %>">first</a>&nbsp;
            </pg:first>
        
            <pg:prev>
               <a href="<%= pageUrl %>">prev</a>&nbsp;
            </pg:prev>
        
            <pg:pages>
               <a href="<%= pageUrl %>"><%= pageNumber %></a>&nbsp;
            </pg:pages>
        
            <pg:next>
               <a href="<%= pageUrl %>">next</a>&nbsp;
            </pg:next>
        
            <pg:last>
               <a href="<%= pageUrl %>">last</a>
            </pg:last>
   </pg:index>
   </pg:pager>
</c:if>


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.557 / Virus Database: 349 - Release Date: 12/30/2003
 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.557 / Virus Database: 349 - Release Date: 12/30/2003
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to