Re: logic tags

2003-10-24 Thread Brad Balmer
Have you looked at the DisplayTag Libray? http://sourceforge.net/projects/displaytag/ mohamed ebrahim faisal wrote: E.FAISAL Hi I would like to display the form data in JSP using logic:iterate tags. Consider the following situation ArrayList ar = form.getInfoContents(); for(int

Re: logic tags with mapped properties

2003-08-14 Thread André
Yes, it is supported. --- André Moreira [EMAIL PROTECTED] wrote: Gurus, do logic tags suport mapped properties? In other words, I want to have a HashMap wrapped inside a java bean and use its values in a tag like logic:equal name=beanName property=mappedProperty(key) value=true/ Any

Re: Logic tags and collections?

2003-03-12 Thread niksa_os
Try struts menu http://sourceforge.net/project/struts-menu. Edgar PAGE NOT FOUND I try to search at sourceforge.net, but I didn't find anything like struts-menu. Where is it? - To unsubscribe, e-mail: [EMAIL PROTECTED] For

RE: Logic tags and collections?

2003-03-12 Thread Eva Sager
I think he meant http://sourceforge.net/projects/struts-menu -Original Message- From: niksa_os [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 12, 2003 6:13 AM To: Struts Users Mailing List Subject: Re: Logic tags and collections? Try struts menu http://sourceforge.net/project/struts

RE: Logic tags and collections?

2003-03-11 Thread Edgar Dollin
Try struts menu http://sourceforge.net/project/struts-menu. Edgar -Original Message- From: niksa_os [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2003 11:37 AM To: 'Struts Users Mailing List' Subject: Logic tags and collections? How can I make something like this with

RE: Logic tags and collections?

2003-03-11 Thread Marco Tedone
First of all I would suggest you to reverse the if order so that, it the first if returns true, you don't' have to perform the other if statements(Like now, to get to a consistent result, you should perform all the three if statements); secondly, you could iterate trough the Collection retrieved

RE: logic-tags related to beans not derived from ActionForm?

2002-04-15 Thread Maris Orbidans
Yes, of course, it's possible. There is no requirement that class you work with must be derived from ActionForm. A class derived from ActionForm is a bean. Logic tags also can work with cookies, request headers etc. ( see doc. of logic tags ) I'd suggest you to create some JavaBean ( in

Re: logic-tags related to beans not derived from ActionForm?

2002-04-15 Thread Johannes Wolfgang Woger
Thank you Maris, exactly what I needed. I suppose that is the way to overcome the restriction that an Action can have only one ActionForm. Wolfgang - Original Message - From: Maris Orbidans [EMAIL PROTECTED] Newsgroups: Struts Sent: Monday, April 15, 2002 1:29 PM Subject: RE: logic

Re: logic-tags related to beans not derived from ActionForm?

2002-04-15 Thread Johannes Wolfgang Woger
2:56 PM Subject: RE: logic-tags related to beans not derived from ActionForm? Thank you Maris, exactly what I needed. I suppose that is the way to overcome the restriction that an Action can have only one ActionForm. Yes. BTW You can add properties to you form bean, that don't

RE: Logic Tags

2001-08-29 Thread Assenza, Chris
Could you be more specific so we can help? :) Chris Christopher Assenza Phone: 412.201.6026 Fax: 412.201.6060 Email: [EMAIL PROTECTED] ACCESSDATA Moving Your Business from Point A to Point e.SM http://www.accessdc.com/ -Original Message- From: Mike Bungay [mailto:[EMAIL

RE: Logic Tags

2001-08-29 Thread Mike Bungay
I am passing the success (request.setAttribute(success,yes);) parameter back to the jsp but in the jsp when I try this code: logic:present parameter=success SCRIPT LANGUAGE=JavaScript window.open(welcome.jsp, popupPage, top=0,left=0,resizable=yes, status=yes +

RE: Logic Tags

2001-08-29 Thread Roumen Ganeff
: Logic Tags I am passing the success (request.setAttribute(success,yes);) parameter back to the jsp but in the jsp when I try this code: logic:present parameter=success SCRIPT LANGUAGE=JavaScript window.open(welcome.jsp, popupPage, top=0,left=0,resizable=yes, status=yes

RE: Logic Tags

2001-08-29 Thread George, Carl
, August 29, 2001 11:17 AM To: '[EMAIL PROTECTED]' Subject: RE: Logic Tags I am passing the success (request.setAttribute(success,yes);) parameter back to the jsp but in the jsp when I try this code: logic:present parameter=success SCRIPT LANGUAGE=JavaScript window.open

RE: Logic Tags

2001-08-29 Thread Mike Bungay
: AW: Logic Tags did you have: String message = blabla; request.setAttribute(success, message); in your actionBean? -juraj -Ursprüngliche Nachricht- Von: Mike Bungay [mailto:[EMAIL PROTECTED]] Gesendet: Mittwoch, 29. August 2001 17:17 An: '[EMAIL PROTECTED]' Betreff: RE: Logic Tags I

RE: Logic Tags

2001-08-29 Thread Mike Bungay
The present tag is not firing at all. I tried the scope=request but there was no change. THe tag still doesn't fire.. -Original Message- From: George, Carl [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 29, 2001 11:34 AM To: '[EMAIL PROTECTED]' Subject: RE: Logic Tags

RE: Logic Tags

2001-08-29 Thread George, Carl
but did you change parameter to name? -Original Message- From: Mike Bungay [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 29, 2001 11:54 AM To: '[EMAIL PROTECTED]' Subject: RE: Logic Tags The present tag is not firing at all. I tried the scope=request but there was no change

RE: Logic Tags

2001-08-29 Thread Mike Bungay
Carl George, Thanks for the tip, It is finally working... -Original Message- From: George, Carl [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 29, 2001 12:08 PM To: '[EMAIL PROTECTED]' Subject: RE: Logic Tags but did you change parameter to name? -Original Message- From

Re: Hi All, especially Nial Pemberton and Ted Husted - Re Logic Tags

2001-08-24 Thread Ted Husted
Personally, I would tend to want to stand pat on the Struts tag extensions while the JSPTL is being sorted out. Ideally, I believe we would want to include a bare minimum number of tags with Struts, and leave everything else to places like Jakarta Taglibs. It's possible that Nial might want to

Hi All, especially Nial Pemberton and Ted Husted - Re Logic Tags

2001-08-23 Thread Dudley [EMAIL PROTECTED]
Hi All, I just want to know wether Nials extra logic tags will ever be put into the Struts build? Thanx Regards, Dudley Butt Software Analyst/Developer Phone: +27 (0)21 936 7517 Mobile: +27 (0)83 327 5709 E-mail: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]

RE: logic tags

2001-06-20 Thread Jon.Ridgway
Hi Pratima, I guess the simple answer is that in JSP getters and setters should handle strings only. So the logic tags expect strings. There is no if/else tag, there are plans for if/else and switch in the 1.1 to do list (see http://jakarta.apache.org/struts/todo-1.1.html). Jon.