Re: [appfuse-user] DisplayTag question....any reply?

2008-03-02 Thread Michael Horwitz
On 02/03/2008, Carlos Ortiz <[EMAIL PROTECTED]> wrote: > > Thank you very much Peter for pointing me this out. But I also have a > question besides what you have taught me. How do I refer to the record > being rendered in the input type=checkbox, > > I mean, I give the list to the display tag, an

Re: [appfuse-user] DisplayTag question....any reply?

2008-03-01 Thread Carlos Ortiz
Thank you very much Peter for pointing me this out. But I also have a question besides what you have taught me. How do I refer to the record being rendered in the input type=checkbox, I mean, I give the list to the display tag, and how I tell in the column that I need a value from that list as i

Re: [appfuse-user] DisplayTag question....any reply?

2008-02-26 Thread Peter Schneider-Manzell
Hi! By searching "dispalytag" in google, you find the following link: displaytag.sourceforge.net/ How to add different decorators to a column: http://displaytag.sourceforge.net/11/tut_decorators.html You can also use normal JSP, e.g. How to configure the paginator: http://displaytag

[appfuse-user] DisplayTag question....any reply?

2008-02-26 Thread Carlos Ortiz
Hi This is simple, following is a table which I need to know if it can be generated using DisplayTAG Column1Column2 Column3 1 abc [ x] 2 abc [ ] Prev/First 1 2 3 Next/Last -> Paginator controls In fact, question is about how to

RE: [appfuse-user] DisplayTag Question

2007-02-05 Thread Ding, Qin
Thank you, Matt. I'll take your advice. Qin -Original Message- From: Matt Raible [mailto:[EMAIL PROTECTED] Sent: Monday, February 05, 2007 10:18 AM To: users@appfuse.dev.java.net Subject: Re: [appfuse-user] DisplayTag Question I would put in in a webapp.util package, or some

Re: [appfuse-user] DisplayTag Question

2007-02-05 Thread Matt Raible
I would put in in a webapp.util package, or something similar. Matt On 2/5/07, Ding, Qin <[EMAIL PROTECTED]> wrote: I wrote a custom decorator class by extending TableDecorator for the displaytag. Where should I put this class? In model package? It is not a model class. In web package

RE: [appfuse-user] DisplayTag Question

2007-02-05 Thread Ding, Qin
I wrote a custom decorator class by extending TableDecorator for the displaytag. Where should I put this class? In model package? It is not a model class. In web package? Or jar this class by itself and drop into the classpath? What is the best way of organizing classes like this? Q