[displaytag-user] Help with partial lists

2005-10-09 Thread Jeff Thorne
I am fairly new to display tag and I am confused how to implement partial lists. I understand partialList="true" size="resultSize" but am unclear how I can hook display tags pagination calls into my model beans for retrieving additional records. Can someone provide me with some simple sample code o

Re: [displaytag-user] I need the deprecated nowrap attribute!

2005-10-09 Thread Matt Raible
Maybe you need an XHTML doctype so your browsers switch to standards-compliant mode. http://gutfeldt.ch/matthias/articles/doctypeswitch.html Matt On 10/9/05, Zsolt <[EMAIL PROTECTED]> wrote: > Matt, > > I have tried it, but the only solution that works is . > > I'm not surprised because I don't

Re: [displaytag-user] How to write a column decorator that renders the entire column include ...?

2005-10-09 Thread Matt Raible
On 10/9/05, Zsolt <[EMAIL PROTECTED]> wrote: > Hi, > > I understand that I can use column decorators to render columns between > but is that possible to render even the tags? I would > like to add some attributes to . I don't believe so. You could use JavaScript after the table loads to add

RE: [displaytag-user] I need the deprecated nowrap attribute!

2005-10-09 Thread Zsolt
Matt, I have tried it, but the only solution that works is . I'm not surprised because I don't have anything between . Zsolt >-Original Message- >From: [EMAIL PROTECTED] [mailto:displaytag-user- >[EMAIL PROTECTED] On Behalf Of Matt Raible >Sent: Sunday, October 09, 2005 6:20 PM >To: di

[displaytag-user] How to write a column decorator that renders the entire column include ...?

2005-10-09 Thread Zsolt
Hi, I understand that I can use column decorators to render columns between but is that possible to render even the tags? I would like to add some attributes to . Zsolt --- This SF.Net email is sponsored by: Power Architecture Resource

Re: [displaytag-user] I need the deprecated nowrap attribute!

2005-10-09 Thread Matt Raible
Because it's not valid XHTML. Matt On 10/9/05, Zsolt <[EMAIL PROTECTED]> wrote: > Matt, > > no I didn't (but will). A lot of web applications do use this attribute. Why > is deprecated for displaytag? > > Zsolt > > > >-Original Message- > >From: [EMAIL PROTECTED] [mailto:displaytag-user-

RE: [displaytag-user] I need the deprecated nowrap attribute!

2005-10-09 Thread Zsolt
Matt, no I didn't (but will). A lot of web applications do use this attribute. Why is deprecated for displaytag? Zsolt >-Original Message- >From: [EMAIL PROTECTED] [mailto:displaytag-user- >[EMAIL PROTECTED] On Behalf Of Matt Raible >Sent: Sunday, October 09, 2005 6:20 PM >To: displayta

Re: [displaytag-user] Can a decorator method handle 5 data objects at the same time?

2005-10-09 Thread Matt Raible
You can provide a body to a tag and have full control over the HTML that's generated. See the bottom half of the following page for a howto: http://displaytag.sourceforge.net/tut_implicitobjects.html Matt On 10/7/05, Robert Van Overmeiren <[EMAIL PROTECTED]> wrote: > Hello, > > I want to imple

Re: [displaytag-user] I need the deprecated nowrap attribute!

2005-10-09 Thread Matt Raible
Have you tried style="white-space: nowrap"? Matt On 10/7/05, Zsolt Koppany <[EMAIL PROTECTED]> wrote: > Hi, > > displaytag-1.1-SNAPSHOT throws an exception if I use nowrap="true" but I > need it. The stylesheet below is not enough: > > TD.colseparator { > /* background-color: #64; */

[displaytag-user] Can a decorator method handle 5 data objects at the same time?

2005-10-09 Thread Robert Van Overmeiren
Hello, I want to implement a decorator class to wrap a store name within a hyperlink to mapquest. I can concatenate the link together in the SQL string, but a decorator would be better. The SQL concatenation looks like this... 'http://www.mapquest.com/maps/map.adp?country=US&countryid=US&addto h

[displaytag-user] I need the deprecated nowrap attribute!

2005-10-09 Thread Zsolt Koppany
Hi, displaytag-1.1-SNAPSHOT throws an exception if I use nowrap="true" but I need it. The stylesheet below is not enough: TD.colseparator { /* background-color: #64; */ background-color: silver; width: 1; white-space: nowrap; } Any ideas? Zsolt -