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

2001-11-30 Thread David Morris
Hani, I still must not understand, but I think that your someStrutsTag is indeed nested in your tag. At least the output is. You may be able to get away with something like: if (getSomeStrutsTag() == null) { setSomeStrutsTag()(new SomeStrutsTag()); getSomeStrutsTag().setParent(this); get

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

2001-11-30 Thread David Morris
Hanikh, You can instantiate a tag from within a tag. You would need to set the appropriate tag setters like setParent and setPageContext. It may or may not work depending on how the tag was written. I also don't think it is an ideal way to nesting tags but it does work when the output of one