Re: displaytag CSV output throw "Internet Explorer cannot display webpage" Exception under IE9

2011-10-18 Thread Brian Thompson
How long is the URL, including all the parameters? IE has a limit of 2083 characters. On Tue, Oct 18, 2011 at 3:04 PM, Emi Lu wrote: > Hello List, > > I know the question is not really related to struts, and I am asking just > in case, people had similar problem and has the solution. > > I am u

Re: DisplayTag and Internationalization Lookups

2010-02-22 Thread Lukasz Lenart
2010/2/22 CRANFORD, CHRIS : > Thoughts? Maybe that? http://www.mail-archive.com/displaytag-de...@lists.sourceforge.net/msg03267.html Regards -- Łukasz http://www.lenart.org.pl/ Kapituła Javarsovia 2010 http://javarsovia.pl - T

RE: DisplayTag and Internationalization Lookups

2010-02-22 Thread CRANFORD, CHRIS
s column to be shown with "PO Number" and not "PO Number" for English and showing the key value for the German locale. Chris -Original Message- From: Lukasz Lenart [mailto:lukasz.len...@googlemail.com] Sent: Monday, February 22, 2010 10:10 AM To: Struts Users

Re: DisplayTag and Internationalization Lookups

2010-02-22 Thread Lukasz Lenart
Maybe it's related to that https://issues.apache.org/jira/browse/WW-3219 Regards -- Łukasz http://www.lenart.org.pl/ Kapituła Javarsovia 2010 http://javarsovia.pl - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For

Re: displaytag css problem

2009-12-11 Thread Chris Pratt
Give your displaytag a class of it's own (something like "displaytag"), then prefix all your css entries with ".displaytag" so that they only act on elements within the DisplayTag. (*Chris*) On Fri, Dec 11, 2009 at 5:16 AM, Nguyen Xuan Son wrote: > dear all > im using the displaytag > however,

Re: displaytag - Nothing found to display.

2009-11-13 Thread Kris Reid
Whoops - made I typo whilst I was mucking around. That's not the problem though Paul Benedict-2 wrote: > > You're attributes are wrong. Should be: > > > > > @name is the name of your request attribute. > @id is the request attribute created at each the iteration. > > Paul > > - ht

Re: displaytag - Nothing found to display.

2009-11-13 Thread Paul Benedict
You're attributes are wrong. Should be: @name is the name of your request attribute. @id is the request attribute created at each the iteration. Paul On Fri, Nov 13, 2009 at 10:21 AM, Kris Reid wrote: > > > > Oscar Calderón-2 wrote: >> >> >> Are you using ajax tags (like dojo ) or something

Re: displaytag - Nothing found to display.

2009-11-13 Thread Kris Reid
Oscar Calderón-2 wrote: > > > Are you using ajax tags (like dojo ) or something like that with > displaytag? > > > No - haven't got any ajax or anything fancy I seem to have found a work around In the action class I stick the List into the request object request.setAttribute("list", list)

Re: displaytag - Nothing found to display.

2009-11-13 Thread Oscar
Kris Reid escribió: The problem has something to do with the get method in the action class not being called. Any ideas why this would happen? If I hit refresh a time or two it works fine. - http://www.kremsoft.com Kremsoft - Software Development Are you using ajax tags (like dojo )

Re: displaytag - Nothing found to display.

2009-11-13 Thread Kris Reid
The problem has something to do with the get method in the action class not being called. Any ideas why this would happen? If I hit refresh a time or two it works fine. - http://www.kremsoft.com Kremsoft - Software Development -- View this message in context: http://old.nabble.com/disp

Re: displaytag - Nothing found to display.

2009-11-11 Thread Kris Reid
To add a little more information the the JSP looks like this Cheers Kris Kris Reid wrote: > > Hi > > I am using Struts2 with Display tag to display a List > Most of the time it works perfect but sometimes it displays the error > "Nothing found to display" > > This is not correc

Re: DisplayTag - show image by condition

2007-12-06 Thread quinquin2209
Thanks. This work fine for me. Richard Sayre wrote: > > You have to make your own decorator: > > I assume your table is populated with a 'Member' list or something > similar. In your table decorator create a method that returns the > image based on the condition: > > > public class MemberL

Re: DisplayTag - show image by condition

2007-12-05 Thread Richard Sayre
You have to make your own decorator: I assume your table is populated with a 'Member' list or something similar. In your table decorator create a method that returns the image based on the condition: public class MemberListDecorator extends TableDecorator { public String getType() {

Re: DisplayTag - How to do sort?

2007-12-05 Thread Jeromy Evans
quinquin2209 wrote: I have just downloaded the DisplayTag and try with the sort function. I do the following: When I click on the column header, it displays "Nothing found to display". The URL has been changed to http://localhost:8080/test/jsp/folderList.jsp?d-49653-s=0&d-49653-o=2

Re: Displaytag problems

2007-09-04 Thread Toni Lyytikäinen
Yes, there are several approaches to it, using AjaxTags, Ajax Anywhere, YUI, Prototype etc. It might be possible to implement it in Dojo too, I don't know enough about Dojo to say anything certain. All solutions are somewhat hackish though, and I wouldn't really recommend using them. AjaxTags is th

Re: Displaytag problems

2007-09-04 Thread Didier Coignet
Yeah, if I leave the requestURI field empty it calls the action which loads the list from a webservice/database. But I already have so data, so I don't need to load the data again. This is why I created an empty action. After some copying from other struts actions and some republishing and restart

Re: Displaytag help in Struts 2

2007-07-20 Thread SethVIII
Like Kishan, I am unable to get the "row" to work... I never get anything back from #myrow.param, any suggestions? The rest of the table using pure displaytag works fine. I am using displaytag 1.1, my code is below.

Re: Displaytag help in Struts 2

2007-07-17 Thread Jeromy Evans
Yes, I use it as stated previously. Is row the object you think it is? You either have a typo or you're trying to access properties of row that don't exist. The code below shows plain html contained in a column that accesses properties of the current row. property="dateCre

Re: Displaytag help in Struts 2

2007-07-17 Thread kishanparikh
Hello, Were you able to get the "row" to work? I am trying to get hold of the my properties using the "row" variable inside of a displaytag table. The table itself if working fine. I have tried both the JSTL and the OGNL way but the "row" is always empty. Does anyone know how to get this workin

Re: Displaytag help in Struts 2

2007-07-05 Thread Jeromy Evans
Within the displaytag 'display:table' tag, a 'row' object is set into the page context. How is this accessible from Struts 2? #attr is the OGNL to access the page context.#attr.row will access your display tag id object named row eg. #1 eg. #2 #attr is described here

Re: Displaytag help in Struts 2

2007-07-05 Thread Jeromy Evans
Within the displaytag 'display:table' tag, a 'row' object is set into the page context. How is this accessible from Struts 2? #attr is the OGNL to access the page context.#attr.row will access your display tag id object named row eg. #1 eg. #2 #attr is described here

Re: Displaytag reading column titles from application resources file

2007-06-08 Thread leokom
OK, the solution with i18nResourceProvider in displaytag.properties works PERFECT for Struts 1 - but in Struts 2 I have a trouble - it doesn't work. Any suggestions? -- View this message in context: http://www.nabble.com/Displaytag-reading-column-titles-from-application-resources-file-tf431017.h

Re: Displaytag

2007-05-17 Thread Balazs Michnay
Mailing List Sent: Thursday, May 17, 2007 2:17:52 AM Subject: Re: Displaytag We use displaytag with S2 with no issues. When deployed on Tomcat 6 we did have to use this tag declaration And place a copy of the tld file in the WEB-INF directory. Z. > Dear Struts users, > > I've r

Re: RE Displaytag

2007-05-16 Thread Nuwan Chandrasoma
Hi, They are inside the .jar files that comes with the struts dist, Thanks, Nuwan - Original Message - From: "vikas rao" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Thursday, May 17, 2007 2:04 AM Subject: Re: RE Displaytag Where do

Re: RE Displaytag

2007-05-16 Thread vikas rao
Where does one download the struts-bean.tld file and the others?? Thanks, Vikas. On 5/16/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Hi, With this declaration, your server has to have acces to the Internet, to download the tld and so one. If you don't have this acces, try to download th

Re: Displaytag

2007-05-16 Thread Zoran Avtarovski
We use displaytag with S2 with no issues. When deployed on Tomcat 6 we did have to use this tag declaration <%@ taglib uri="/WEB-INF/displaytag-el-12.tld" prefix="display" %> And place a copy of the tld file in the WEB-INF directory. Z. > Dear Struts users, > > I've recently downloaded display

Re: Displaytag

2007-05-16 Thread Mark Shifman
Displaytag works fine for me in struts1.3 just doing the things below. Perhaps you need to re-deploy your webapp or re-start tomcat. mas Balazs Michnay wrote: Dear Struts users, I've recently downloaded displaytag-1.1 and followed all the instructions on how to install it. It would have been t

Re: RE Displaytag

2007-05-16 Thread Antonio Petrelli
2007/5/16, [EMAIL PROTECTED] <[EMAIL PROTECTED]>: Hi, With this declaration, your server has to have acces to the Internet Wrong, as long as the TLD file is in the META-INF folder of DisplayTag package, the URI will point to the local TLD file.

RE Displaytag

2007-05-16 Thread MLENEVEUT
Hi, With this declaration, your server has to have acces to the Internet, to download the tld and so one. If you don't have this acces, try to download the tld file, add it in your WEB-INF/tld folder, and add the mapping in your web.xml. Regards, Michaël Balazs Michnay <[EMAIL PROTECTED]>

Re: Displaytag

2007-05-16 Thread Antonio Petrelli
2007/5/16, Balazs Michnay <[EMAIL PROTECTED]>: Any ideas what to do now? Asking the displaytag mailing list would be nice! :-P Antonio

RE: DisplayTag Library

2006-10-27 Thread David Friedman
Take a look at this example where the displaytag table at the bottom of the page shows you just type it in there: http://demo.appfuse.org/appfuse/demos/users-edit.jsp In case you were wondering, I used the words "displaytag editable table" in a search engine to find the page (but yes, I had a head

RE: displaytag/ struts layout tag?

2006-09-05 Thread David Friedman
Personally, I would suggest Displaytag because you could easily use it with Struts 2.0 when it comes out and not have to worry about how long it might take for Struts-Layout to update their code base. I suppose that would only matter if you are considering eventually upgrading to Struts 2.0 whenev

Re: displaytag , how display from a vector of beans ?

2006-07-18 Thread vijay venkataraman
If you are still having problems - Download the example source code or war file from http://displaytag.sourceforge.net/m2repo/displaytag/displaytag-examples/1.1/. This should give you a clear idea. Thanks, Vijay Venkataraman Michael Jouravlev wrote: http://displaytag.sourceforge.net/11/tut_b

Re: displaytag , how display from a vector of beans ?

2006-07-18 Thread Michael Jouravlev
http://displaytag.sourceforge.net/11/tut_basic.html On 7/18/06, A. Lotfi <[EMAIL PROTECTED]> wrote: In the Acion I fill a vector with dynaForm(s) for(.) { vecInboxMessages.addElement(dynaForm); } session.setAttribute("inboxList" , vecInboxMessages);

RE: displaytag , how display from a vector of beans ?

2006-07-18 Thread A. Lotfi
In the Acion I fill a vector with dynaForm(s) for(.) { vecInboxMessages.addElement(dynaForm); } session.setAttribute("inboxList" , vecInboxMessages); saveToken(request); getSubheaderDetails(); return mapping.findForward(forward);

RE: displaytag , how display from a vector of beans ?

2006-07-18 Thread George Papandreou
Can you show your syntax? Here is an example: <%@ taglib uri="http://displaytag.sf.net"; prefix="display" %> Where wsUsers is a form bean method that takes a Vector. Cheers, /g -Original Message- From: A. Lotfi [mailto:[EMAIL PROTECTED] Sent: Monday, July 17, 2006 4:52

Re: displaytag

2006-01-25 Thread fea jabi
thanks. that worked. From: [EMAIL PROTECTED] Reply-To: "Struts Users Mailing List" To: "Struts Users Mailing List" Subject: Re: displaytag Date: Wed, 25 Jan 2006 14:51:31 -0500 "fea jabi" <[EMAIL PROTECTED]> wrote on 01/25/2006 02:47:03 PM: > yes,

Re: displaytag

2006-01-25 Thread gramani
"fea jabi" <[EMAIL PROTECTED]> wrote on 01/25/2006 02:47:03 PM: > yes, I do. > > private String accountNum; > > public void setAccountNumber(String accountNum) { > this.accountNum = accountNum; > } > > public String getAccountNumber() { > return accountNum; >

Re: displaytag

2006-01-25 Thread fea jabi
ot;Struts Users Mailing List" Subject: Re: displaytag Date: Wed, 25 Jan 2006 14:41:26 -0500 "fea jabi" <[EMAIL PROTECTED]> wrote on 01/25/2006 02:36:27 PM: > Sorry, guys for posting display tag issue here. Had to do this as I was not > getting any response from it's

Re: displaytag

2006-01-25 Thread gramani
"fea jabi" <[EMAIL PROTECTED]> wrote on 01/25/2006 02:36:27 PM: > Sorry, guys for posting display tag issue here. Had to do this as I was not > getting any response from it's user forum today atleast. > > > Have an object Account. Which is having attributes accountNum, > accountTypeetc. >

Re: Displaytag reading column titles from application resources file

2005-10-21 Thread David Whipple
Subject Please respond to Re: Displaytag reading column "Struts Users titles from application resources Mailing List" file

Re: [OT DisplayTag] Re: Displaytag reading column titles from application resources file

2005-10-21 Thread David Whipple
PM cc Subject Please respond to [OT DisplayTag] Re: Displaytag "Struts Users

Re: Displaytag reading column titles from application resources file

2005-10-20 Thread Martin Gainty
Good Afternoon David Dumb question but I have to ask titleKey will retrieve a message via 1)title is not defined 2)displaytag.properties must contain the name of the i18nResourceProvider 2)assuming JSTL is available..JSTL.jar is included in your application.war M- - Original Message - Fr

[OT DisplayTag] Re: Displaytag reading column titles from application resources file

2005-10-20 Thread Dave Newton
David Whipple wrote: ... You have a property called "" in your application resources file? If so, I guess I don't know, but I'd probably yell at you for a weird resource name. Dave - To unsubscribe, e-mail: [EM

Re: Displaytag and Struts problem

2005-06-23 Thread Lucas Bern
Hi Martin... I´ve been using display tag and struts for a long time, and, I can say that it works beautifull, no limitation in any functionality provided by both frameworks... I tell you this because if you think something can not be done, may be you are wrong... The problem with the checkb

Re: displayTag needs session scoped objects for sort/export ?

2005-06-12 Thread Lixin Chu
rint to support that caching. > > Regards, > David > > -Original Message- > From: Lixin Chu [mailto:[EMAIL PROTECTED] > Sent: Saturday, June 11, 2005 6:36 AM > To: user@struts.apache.org > Subject: Re: displayTag needs session scoped objects for sort/export ? &g

RE: displayTag needs session scoped objects for sort/export ?

2005-06-11 Thread David G. Friedman
6:36 AM To: user@struts.apache.org Subject: Re: displayTag needs session scoped objects for sort/export ? you can but have to hit the DB every time. On 6/11/05, Lixin Chu <[EMAIL PROTECTED]> wrote: > Hi, > would like to clarify with those who use displayTag: > is it a must to put

Re: displayTag needs session scoped objects for sort/export ?

2005-06-11 Thread Lixin Chu
you can but have to hit the DB every time. On 6/11/05, Lixin Chu <[EMAIL PROTECTED]> wrote: > Hi, > would like to clarify with those who use displayTag: > is it a must to put list of objects into session to be able sue sort > and export function ? > > thanks > lixin > ---

RE: DisplayTag

2005-01-26 Thread Daniel H. F. e Silva
; Am I missing something? > > Thanks, > Yaakov. > > -Original Message- > From: Daniel H. F. e Silva [mailto:[EMAIL PROTECTED] > Sent: Tuesday, January 25, 2005 11:20 AM > To: Struts Users Mailing List > Subject: Re: DisplayTag > > Hi Flavio, > >

RE: DisplayTag

2005-01-26 Thread David G. Friedman
ov Y. [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 26, 2005 10:55 AM To: 'Struts Users Mailing List' Subject: RE: DisplayTag Daniel, This is a side point, but what do you mean when you say "JSTL-enabled"? Everything is JSTL enabled, isn't it? Just drop the jstl.jar into yo

RE: DisplayTag

2005-01-26 Thread Chaikin, Yaakov Y.
Silva [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 25, 2005 11:20 AM To: Struts Users Mailing List Subject: Re: DisplayTag Hi Flavio, If you are using Tomcat 5 or any other JSTL-enabled container you don't need displaytag. Just use JSTL tags like and . And yes, you can alter locale being

Re: DisplayTag

2005-01-25 Thread Metin Erksan
hi i tried to signup for list.but i could not.i could review my messages but ý could not get singup confirmation ): sincerely Martin Wegner <[EMAIL PROTECTED]> wrote: Check out the displaytag mailing list. It has an excellent community which is very quick to help. --Marty --- Flávio Maldo

Re: DisplayTag

2005-01-25 Thread Daniel H. F. e Silva
Hi Flávio, If you are using Tomcat 5 or any other JSTL-enabled container you don't need displaytag. Just use JSTL tags like and . And yes, you can alter locale being used. Look for details on JSTL documentation. It is easier imho to use and, well, it is standard-compliant :-) Cheers, D

Re: DisplayTag

2005-01-25 Thread Martin Wegner
Check out the displaytag mailing list. It has an excellent community which is very quick to help. --Marty --- Flávio Maldonado <[EMAIL PROTECTED]> wrote: > Hello people! > > Has anybody here used DisplayTag lib? > I'm trying to use here but I'm having some problems with Locale... > > 115609

RE: Displaytag, number formatting, and sorting

2005-01-07 Thread Paul McCulloch
; From: Barnett, Brian W. [mailto:[EMAIL PROTECTED] > Sent: 07 January 2005 02:00 > To: 'Andy Engle '; 'user@struts.apache.org ' > Subject: RE: Displaytag, number formatting, and sorting > > > Use a column decorator. > > decorator="com.whitesandso

RE: Displaytag, number formatting, and sorting

2005-01-06 Thread Barnett, Brian W.
Use a column decorator. And create your decorator class something like this: public class MoneyDecorator implements ColumnDecorator { public MoneyDecorator() { super(); } public String decorate(Object value) { String decoratedVal

RE: [DisplayTag]How to avoid 'context switching' when sorting col umns

2004-04-13 Thread Paul McCulloch
The attribute you are after is requestURI. Paul > -Original Message- > From: Takhar, Sandeep [mailto:[EMAIL PROTECTED] > Sent: Monday, April 12, 2004 12:21 PM > To: Struts Users Mailing List > Subject: RE: [DisplayTag]How to avoid 'context switching' when so

RE: [DisplayTag]How to avoid 'context switching' when sorting columns

2004-04-12 Thread Takhar, Sandeep
I haven't tried this, but somewhere on their site they say you should use a uri="" on the table. I haven't tested it is what I should say because that is the way I have coded it. It might be in their faq's.. sandeep -Original Message- From: Frank Schaare [mailto:[EMAIL PROTECTED] Sent