up vote 0 down vote favorite
share [g+] share [fb]

How can i get all the nested tag elements from a struts2 tag? for instance text and checkbox tags from form tag?:

<s:form>
 <s:text .../>
 <s:checkbox .../
<s:form>

I know that form is a tag defined in strust-tags.tld and it extends the org.apache.struts2.views.jsp.ui.FormTag, but how does it goes behind the scene to get the nested tags ?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

use getComponentStack() method from the org.apache.struts2.components.Component class.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.