Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=4904475
By: goelshek

When I use a static/hardcoded number for pagesize:

<display:table style="width:100%" pagesize="5">
...
</display:table>

everything works fine. However, as soon as I put a variable for pagesize:

<% 
int pageSizeInt
= Integer.parseInt((String)request.getAttribute("NUM_RESULTS_PER_PAGE"));
%>

<display:table style="width:100%" pagesize="<%=pageSizeInt%>">
...
</display:table>

my navigation/banner (First/Prev 1, 2, ... Next/Last) becomes hidden and I have
no way of going to the next page.

I would really appreciate if someone can please help me figure out what's going
wrong.

Thanks.

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=249318

-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
_______________________________________________
displaytag-user mailing list
displaytag-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/displaytag-user

Reply via email to