Displaying mulitpage results

2005-02-19 Thread Peter Neu
Hello everybody, in my struts application I used to display a table of query results on one page. Now the results are becoming way too much to display them on one page. What is the best way to implement a mulitpage result view? The problem is I have multi-step workflow and I don't want to confuse

Re: Displaying mulitpage results

2005-02-19 Thread Bing Qiao
hi Peter, Have you tried displaytag before? On Sat, 19 Feb 2005 11:11:27 +0100, Peter Neu <[EMAIL PROTECTED]> wrote: > Hello everybody, > > in my struts application I used to display a table of query results on > one page. Now the results are becoming way too much to display them on > one page.

Re: Displaying mulitpage results

2005-02-19 Thread Peter Neu
Ok, I will check this out. This a non-struts-project right? Is there also an option only using struts? Bing Qiao schrieb: hi Peter, Have you tried displaytag before? On Sat, 19 Feb 2005 11:11:27 +0100, Peter Neu <[EMAIL PROTECTED]> wrote: Hello everybody, in my struts application I used to display

Re: Displaying mulitpage results

2005-02-19 Thread Bing Qiao
As far as I know, you may do the paging using . But then you need to build the traversing and sorting functions youself. Regards bq On Sat, 19 Feb 2005 11:51:13 +0100, Peter Neu <[EMAIL PROTECTED]> wrote: > Ok, I will check this out. This a non-struts-project right? > Is there also an option onl

Re: Displaying mulitpage results

2005-02-19 Thread Peter Neu
OK, your are right this is too much work. I tried to use the display tag in my application. But there is an error thrown: Failed to load or instantiate TagExtraInfo class: org.displaytag.tags.TableTagExtraInfo I used Tomcat 5.27 and the 1.2 display-tag. Did you encounter this problem as well? R

Re: Displaying mulitpage results

2005-02-19 Thread Antony Joseph
tired of spamming you all with my company website, so I moved the application to java.net :-) - Original Message - From: "Peter Neu" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Subject: Displaying mulitpage results Date: Sat, 19 Feb 2005 11:11:27 +

Re: Displaying mulitpage results

2005-02-19 Thread Peter Neu
application to java.net :-) - Original Message - From: "Peter Neu" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Subject: Displaying mulitpage results Date: Sat, 19 Feb 2005 11:11:27 +0100 Hello everybody, in my struts application I used to display a tabl

RE: Displaying mulitpage results

2005-02-19 Thread Néstor Boscán
iling List Asunto: Re: Displaying mulitpage results Hello Antony, the datagrid-tags were exactly what I was looking for. The one question which I have is how can I use Struts tags inside the columns? I really need some buttons and input fields. cheers, Peter Antony Joseph schrieb: > Check

Re: Displaying mulitpage results

2005-02-19 Thread Antony Joseph
ebsite, so I moved the application to java.net :-) > > > > > > - Original Message - > > From: "Peter Neu" <[EMAIL PROTECTED]> > > To: "Struts Users Mailing List" > > Subject: Displaying mulitpage results > > Date: Sat, 19 Feb 2005

RE: Displaying mulitpage results

2005-02-19 Thread Antony Joseph
;Struts Users Mailing List'" Subject: RE: Displaying mulitpage results Date: Sat, 19 Feb 2005 13:43:16 -0400 > > Hi Antony > > You can't use JSP tags inside the columns. You could use HTML buttons and > input fields with JSTL expressions. > > Regards, >

RE: Displaying mulitpage results

2005-02-19 Thread Néstor Boscán
specific number. Any new features that you can come up is always welcomed. Regards, Néstor Boscán -Mensaje original- De: Antony Joseph [mailto:[EMAIL PROTECTED] Enviado el: Sábado, 19 de Febrero de 2005 02:37 p.m. Para: Struts Users Mailing List Asunto: RE: Displaying mulitpage results

Re: Displaying mulitpage results

2005-02-21 Thread Bill Schneider
Check out the datagrid library at http://jakarta.apache.org/taglibs/sandbox/doc/datagrid-doc/intro.html If all you are looking for is pagination, sorting and ordering from the database this is a good fit. It does not have all the bells and whistles displaytag has, but is a simple and clean impl

Re: Displaying mulitpage results

2005-02-21 Thread Antony Joseph
scale. - Original Message - From: "Bill Schneider" <[EMAIL PROTECTED]> To: user@struts.apache.org Subject: Re: Displaying mulitpage results Date: Mon, 21 Feb 2005 09:16:16 -0500 > > > Check out the datagrid library at > > http://jakarta.apache.org/t

Re: Displaying mulitpage results -> Néstor

2005-02-20 Thread Peter Neu
o: RE: Displaying mulitpage results Hi Nestor, Thanks for putting together the datagrid library. Please see if you can add these two features in a future release of the library: 1) Expose two more variables to access first page and last page ( like nextUrlVar). 2) A way to specify the maximum numb

[OT] Re: Displaying mulitpage results

2005-02-22 Thread Bill Schneider
By using good frameworks like iBATIS (which has great support for > pagination and dynamic queries) and design patterns pertinent to the requirement, the code in the layers you can be kept to a minimum. The web application at workeffort.dev.java.net does all kinds of pagination, ordering sorting