Re: [OT] Open source paginator

2005-04-08 Thread Ashish Kulkarni
Hi http://kulkarni_ash.tripod.com/howto/jsptaglib-howto.html Ashish --- Rick Reumann <[EMAIL PROTECTED]> wrote: > N G wrote the following on 4/7/2005 3:31 PM: > > Does anyone know of some open source paginator > package out there? > > Something generic enough that you could stick > collections int

Re: [OT] Open source paginator

2005-04-07 Thread Zoran Avtarovski
> > These packages all work the same: they take the entire result set, hold it > in session memory, and page through it. > Not necessarily. Poorly designed implementations may do so but it is quite easy to avoid those sorts of problems. We use displaytag in conjunction with iBatis and it was eas

Re: [OT] Open source paginator

2005-04-07 Thread N G
build one. Thanks for your suggestions anyway, NG. On Apr 7, 2005 6:42 PM, Fogleson, Allen <[EMAIL PROTECTED]> wrote: > Comments inline > > -Original Message- > From: Rick Reumann [mailto:[EMAIL PROTECTED] > Sent: Thursday, April 07, 2005 2:41 PM > To: Struts

RE: [OT] Open source paginator

2005-04-07 Thread Fogleson, Allen
Comments inline -Original Message- From: Rick Reumann [mailto:[EMAIL PROTECTED] Sent: Thursday, April 07, 2005 2:41 PM To: Struts Users Mailing List Subject: Re: [OT] Open source paginator N G wrote the following on 4/7/2005 3:31 PM: > Does anyone know of some open source pagina

Re: [OT] Open source paginator

2005-04-07 Thread Larry Meadors
If you have a million row result set, you made a mistake. ;-) IMO, there are two good ways to do this: - Use something like iBATIS to do paginated lists - Use a stored procedure to return the page from the dataset Larry On Apr 7, 2005 4:13 PM, Wiebe de Jong <[EMAIL PROTECTED]> wrote: > > > If

RE: [OT] Open source paginator

2005-04-07 Thread Wiebe de Jong
I am custom developing it for my current project. Wiebe -Original Message- From: N G [mailto:[EMAIL PROTECTED] Sent: Thursday, April 07, 2005 3:27 PM To: Wiebe de Jong Subject: Re: [OT] Open source paginator You mean you're working an on open source paginator that is similar t

RE: [OT] Open source paginator

2005-04-07 Thread Wiebe de Jong
There are lots of them: http://displaytag.sf.net http://valuelist.sf.net http://jsptags.com/tags/navigation/pager/pager-taglib-2.0.html http://jakarta.apache.org/taglibs/sandbox/doc/datagrid-doc/intro.html and some useful articles: http://raibledesigns.com/page/rd?anchor=there_s_a_new_sortin

Re: [OT] Open source paginator

2005-04-07 Thread Rick Reumann
N G wrote the following on 4/7/2005 3:31 PM: Does anyone know of some open source paginator package out there? Something generic enough that you could stick collections into and it would paginate it for you based on some criteria and expose methods to nextPage(), previousPage() and stuff like that.