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 em...@encs.concordia.ca 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

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

RE: DisplayTag and Internationalization Lookups

2010-02-22 Thread CRANFORD, CHRIS
Mailing List Subject: Re: DisplayTag and Internationalization Lookups Maybe it's related to that https://issues.apache.org/jira/browse/WW-3219 - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e

Re: DisplayTag and Internationalization Lookups

2010-02-22 Thread Lukasz Lenart
2010/2/22 CRANFORD, CHRIS chris.cranf...@setech.com: 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

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 nr000...@ed.ritsumei.ac.jp wrote: dear all im using the

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:

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
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); And

Re: displaytag - Nothing found to display.

2009-11-13 Thread Paul Benedict
You're attributes are wrong. Should be: display:table name=list class=table id=bean pagesize=100 /display:table @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 krisrei...@gmail.com wrote:

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: display:table name=list class=table id=bean pagesize=100 /display:table @name is the name of your request attribute. @id is the request

Re: displaytag - Nothing found to display.

2009-11-11 Thread Kris Reid
To add a little more information the the JSP looks like this display:table name=leads class=table id=leads pagesize=100 display:column property=id sortable=true/ /display:table Cheers Kris Kris Reid wrote: Hi I am using Struts2 with Display tag to display a List Most of the

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

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 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

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

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. display:table name=airParameters sort=list pagesize=50

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 working for

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. s:if test=xxxList.size 0

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 s:url action=/MyAction.action

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 s:url action=/MyAction.action

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:

Re: RE Displaytag

2007-05-17 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 user@struts.apache.org Sent: Thursday, May 17, 2007 2:04 AM Subject: Re: RE Displaytag Where does one download

Re: Displaytag

2007-05-17 Thread Balazs Michnay
PROTECTED] To: Struts Users Mailing List user@struts.apache.org 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

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

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: 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 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

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 displaytag-1.1

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 the

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

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 % display:table name=requestScope.WebServiceForm.wsUsers id=wsUsers class=dataTable display:column property=id title=ID class=hidden headerClass=hidden media=html / display:column

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 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 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:

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. Then,

Re: displaytag

2006-01-25 Thread fea jabi
To: Struts Users Mailing List user@struts.apache.org 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 user forum today

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; } Here's

Re: displaytag

2006-01-25 Thread fea jabi
thanks. that worked. From: [EMAIL PROTECTED] Reply-To: Struts Users Mailing List user@struts.apache.org To: Struts Users Mailing List user@struts.apache.org 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, I do

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

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

Re: Displaytag reading column titles from application resources file

2005-10-21 Thread David Whipple
@struts.apache.org PM cc Subject Please respond to Re

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

2005-10-20 Thread Dave Newton
David Whipple wrote: display:table display:column titleKey=app.resources.name ... ... /display:table You have a property called app.resources.name 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

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 fmt:message key= 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

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

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

2005-06-12 Thread Lixin Chu
. 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 ? you can but have to hit the DB every time. On 6/11/05

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 needs session scoped objects for sort/export ?

2005-06-11 Thread David G. Friedman
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 list of objects

RE: DisplayTag

2005-01-26 Thread Chaikin, Yaakov Y.
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 fmt:formatNumber/ and fmt:formatDate/. And yes, you can alter locale

RE: DisplayTag

2005-01-26 Thread Daniel H. F. e Silva
: 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, If you are using Tomcat 5 or any other JSTL-enabled container you don't need displaytag. Just use JSTL tags like fmt:formatNumber

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

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 fmt:formatNumber/ and fmt:formatDate/. And yes, you can alter locale being used. Look for details on JSTL documentation. It is easier imho to use and, well, it is

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

RE: Displaytag, number formatting, and sorting

2005-01-07 Thread Paul McCulloch
... fmt:formatNumber value=${currentRow.someNumber} type=currency/ /display:column /display:table Paul -Original Message- From: Barnett, Brian W. [mailto:[EMAIL PROTECTED] Sent: 07 January 2005 02:00 To: 'Andy Engle '; 'user@struts.apache.org ' Subject: RE

RE: Displaytag, number formatting, and sorting

2005-01-06 Thread Barnett, Brian W.
Use a column decorator. display:column property=commissionAmount title=Commission decorator=com.whitesandsolutions.gapay.view.decorator.MoneyDecorator sortable=true/ And create your decorator class something like this: public class MoneyDecorator implements ColumnDecorator { public

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 sorting columns I haven't tried

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: