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

How about having displaytag render implementations of the following interface?
This will allow scrollable resultsets and other custom data retrieval methods
to be used with displaytag.

CustomRowDataSource will be an interface encapsulating the collection to be
displayed, with the following methods:

/* go to next row, return true if has next row, false otherwise */
public abstract boolean next();

/* return the row marked by the cursor */
public abstract Object getRow();

/* return the total number of results */
public abstract int getTotalResults();

/* navigate cursor to the appropriate row */
public abstract void goToRow(int rowNumber);

______________________________________________________________________
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=249317


-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
_______________________________________________
displaytag-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/displaytag-user

Reply via email to