Re: Is there a way to "call" a struts custom tag from your own custom tag?

2001-11-30 Thread Jonathan James
t;[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]> Sent: Friday, November 30, 2001 2:48 PM Subject: RE: Is there a way to "call" a struts custom tag from your own custom tag? > This is very cool! > And if the tag you're calling

RE: Is there a way to "call" a struts custom tag from your own custom tag?

2001-11-30 Thread Hani Hamandi
01 3:39 PM To: Struts Users Mailing List Subject: Re: Is there a way to "call" a struts custom tag from your own custom tag? I think the shourt answer is, "No". However, what David is saying should get the job done. For instance I wanted a tag that would allow you to say an

Re: Is there a way to "call" a struts custom tag from your own custom tag?

2001-11-30 Thread Jonathan James
int("") where is not > simply written back to the browser as is, but actually evalutated on the > server. > > Thanks again for your suggestion, > Hani. > > > -Original Message- > From: David Morris [mailto:[EMAIL PROTECTED]] > Sent: Friday, Novem

RE: Is there a way to "call" a struts custom tag from your own custom tag?

2001-11-30 Thread Hani Hamandi
al Message- From: David Morris [mailto:[EMAIL PROTECTED]] Sent: Friday, November 30, 2001 1:27 PM To: [EMAIL PROTECTED] Subject: RE: Is there a way to "call" a struts custom tag from your own custom tag? Hanikh, You can instantiate a tag from within a tag. You would need to set the

RE: Is there a way to "call" a struts custom tag from your own custom tag?

2001-11-30 Thread Hani Hamandi
lto:[EMAIL PROTECTED]] Sent: Friday, November 30, 2001 12:06 PM To: Struts Users Mailing List Subject: Re: Is there a way to "call" a struts custom tag from your own custom tag? You could probably use findAncestorWithClass(Tag, Class) http://java.sun.com/products/servlet/2.2/javad

Re: Is there a way to "call" a struts custom tag from your own custom tag?

2001-11-30 Thread Matt Raible
You could probably use findAncestorWithClass(Tag, Class) http://java.sun.com/products/servlet/2.2/javadoc/javax/servlet/jsp/tagext/TagSupport.html --- Hani Hamandi <[EMAIL PROTECTED]> wrote: > Hi, > > My question is actually simple. > I would like to write my own custom tag that, for example,

Is there a way to "call" a struts custom tag from your own custom tag?

2001-11-30 Thread Hani Hamandi
Hi, My question is actually simple. I would like to write my own custom tag that, for example, builds a form using the struts custom tags. For example, I would like to write a tag like this one: Which, for example, does this: This is just an example, I am not particula