[displaytag-user] scrolling table CSS

2006-03-02 Thread Christofer Jennings
I'd like to integrate the CSS for this scrollable table... http://www.imaputz.com/cssStuff/bulletVersion.html It seems to need the tbody to be class="scrollContent". Is there a way to set the tbody class for displaytag? ,chris --- This

[displaytag-user] [displaytag - Help] RE: Troubleshooting upgrade to DisplayTag 1.1

2006-03-02 Thread SourceForge.net
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3607342 By: fgiust servlet 2.3 (jsp 1.2) is fine and you should not need to update struts (there should be nothing struts 1.2 specific in displaytag code). Be sure to delete previously compiled pages (.java an

Re: [displaytag-user] About Caption and Footer

2006-03-02 Thread Jorge Barroso
If you've set media="html" it will only show up in html.  If you don't set a media type, it will show up in the page and the exporters.  If you set a list of media types, it 'll show up in just those.  In other words, the caption/footer's media property behaves just like column's.See http://display

[displaytag-user] About Caption and Footer

2006-03-02 Thread Kranti Parisa
Hi,   i need to put the caption for each report i generate with a footer as cuurent date.. i have seen the caption and footer example..n did tht.. its coming in html but not with export files :(   please help me what all the configurations i need to perform to get this done   thanks in advance-- --

Re: [displaytag-user] How can I use rtf export

2006-03-02 Thread Jorge Barroso
You configure it like any other media exporter.  To make it globally available, include the following in your properties file.#Add it to your expor typesexport.types=csv excel xml pdf rtfexport.rtf=trueexport.rtf.class=org.displaytag.export.DefaultRtfExportView -JZsolt <[EMAIL PROTECTED]> wrote: Hi

RE: [displaytag-user] The TableDecorator is called by export

2006-03-02 Thread Jorge Barroso
Yeah, if only one decorator is configured, in the table property, then assume it's meant to be used with all media.  Is that what you mean?Zsolt <[EMAIL PROTECTED]> wrote: Why don’t you do that as default if a decorator is being used?   Zsolt     Zsolt <[EMAIL PROTECTED]> w

Re: [displaytag-user] SpringMVC, sorting, RequestHelper

2006-03-02 Thread Christofer Jennings
Thanks Rick. Man! Is that simpler! :) I think the simpler case will work for me for now but I'm sure the parameter passing tip will come in handy soon enough. ,chris On Mar 2, 2006, at 9:18 AM, Rick Herrick wrote: Christofer Jennings said: Am I doing this right? No! :^) I have Sprin

[displaytag-user] How can I use rtf export

2006-03-02 Thread Zsolt
Hi, the rtf export link doesn't appear for me. What do I have to do? zsolt --- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends applications into web and mobile media. Attend the live webcast and join

Re: [displaytag-user] SpringMVC, sorting, RequestHelper

2006-03-02 Thread Rick Herrick
Christofer Jennings said: > Am I doing this right? No! :^) > I have SpringMVC set up to use JSPs in WEB-INF/views/... > The links for displaytag sorting end up like this: http://server/ > domain/WEB-INF/views/table.jsp?... > Of course that doesn't work because WEB-INF is blocked. So I'm making >

RE: [displaytag-user] The TableDecorator is called by export

2006-03-02 Thread Zsolt
Why don’t you do that as default if a decorator is being used?   Zsolt     Zsolt <[EMAIL PROTECTED]> wrote: Here is my exporter (it is my customized excel exporter): RowIterator rowIterator = this.model.getRowIterator(this.exportFull); // iterator on rows while (rowIterator.ha

[displaytag-user] SpringMVC, sorting, RequestHelper

2006-03-02 Thread Christofer Jennings
Am I doing this right? I have SpringMVC set up to use JSPs in WEB-INF/views/... The links for displaytag sorting end up like this: http://server/ domain/WEB-INF/views/table.jsp?... Of course that doesn't work because WEB-INF is blocked. So I'm making a new RequestHelperFactory, RequestHelper,

RE: [displaytag-user] The TableDecorator is called by export

2006-03-02 Thread Jorge Barroso
Zsolt,Yes, it's a feature of the new exporters.  You can set your medium decorator globally in your props file, like thisexport.excel.decorator=name.of.your.excel.decoratorDisplaytag's property tag allows you to override global config or set a property that only applies to a particular use.It shoul

RE: [displaytag-user] The TableDecorator is called by export

2006-03-02 Thread Zsolt
Barroso,   is that a 1.1 issue? Can I do that generally? If use the decorator at several locations.   Zsolt   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]eforge.net] On Behalf Of Jorge Barroso Sent: Thursday, March 02, 2006 4:14 PM To: displaytag-user@lists.sourceforge.

Re: [displaytag-user] How to right align number value

2006-03-02 Thread Rick Herrick
Richard Kanagaraj said: > Hi, > > In Display tag how to right align number column > > It defaults to left > > I am new to Display tag and the help on the same will be great Set the class attribute for that column to a css style that does right align. If you're new to displaytag, refer to all of t

RE: [displaytag-user] The TableDecorator is called by export

2006-03-02 Thread Jorge Barroso
Try adding this config prop to your jsp:  Zsolt <[EMAIL PROTECTED]> wrote: Here is my exporter (it is my customized excel exporter): RowIterator rowIterator =this.model.getRowIterator(this.exportFull); // iterator on rows while (rowIterator.hasNext()) {Row row = rowItera

RE: [displaytag-user] The TableDecorator is called by export

2006-03-02 Thread Zsolt
Here is my exporter (it is my customized excel exporter): RowIterator rowIterator = this.model.getRowIterator(this.exportFull); // iterator on rows while (rowIterator.hasNext()) {

[displaytag-user] How to right align number value

2006-03-02 Thread Richard Kanagaraj
Hi, In Display tag how to right align number column It defaults to left I am new to Display tag and the help on the same will be great Richard --- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends

Re: [displaytag-user] Display a list inside a list?

2006-03-02 Thread Rick Col
Thanks.I am not sure if I understand what you said. I tried the following, but does not work. I am wondering how I can set courses to page context?     pageContext.setAttribute( "courses", courses);                 Rick Herrick <[EMAIL PROTECTED]> wrote: Rick Col said:> I have a list of St

Re: [displaytag-user] The TableDecorator is called by export

2006-03-02 Thread Jorge Barroso
More details pls, like code and use sample.Zsolt <[EMAIL PROTECTED]> wrote: Hi,I would like to move from 1.1-SNAPSHOT to 1.1 final and my problem is thatduring export my decorator is not called any more.Any ideas?Zsolt---This SF.Net email is spons

[displaytag-user] [displaytag - Help] RE: Troubleshooting upgrade to DisplayTag 1.1

2006-03-02 Thread SourceForge.net
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3606452 By: crimsonsails Further to this.. I m getting a ServletException in a getHtmlId()method after the upgrade. This exception is thrown at the display:table tag. I dont have the stack trace right now, but

[displaytag-user] [displaytag - Help] Troubleshooting upgrade to DisplayTag 1.1

2006-03-02 Thread SourceForge.net
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3606445 By: crimsonsails We were using displaytag 1.0 in our project that also uses Struts 1.1 on a Weblogic 8.1 SP3 server. We now want to upgrade to displayTag 1.1, but are facing several issues. I have alrea