Has anyone used <logic:iterator> to display a list of records, and
corresponding list navigation links at the bottom?

For instance, I have an Iteration of DataObjects that I can list through
with the following code:

while (iteratorName.hasNext()) {
    dataObject = (DataObject)iteratorName.next();
    out.println(dataObject.getName());
}

I'm assuming I can do this with the Iterator tag, however, I would also like
to display the following at the bottom of the list:

First  |  1-10  |  11-20  |  20-30  | Last

Where there are 30 records returned.

Any ideas?

Thanks,

Matt


_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com

Reply via email to