Renders a tree node within a tree widget with AJAX support.
Either of the following combinations should be used depending on if the tree is to be constrcted dynamically or statically.
Dynamically - id - id of this tree node
- title - label to be displayed for this tree node
Statically - rootNode - the parent node of which this tree is derived from
- nodeIdProperty - property to obtained this current tree node's id
- nodeTitleProperty - property to obtained this current tree node's title
- childCollectionProperty - property that returnds this current tree node's children
Examples <-- statically --> <s:tree id="..." label="..."> <s:treenode id="..." label="..." /> <s:treenode id="..." label="..."> <s:treenode id="..." label="..." /> <s:treenode id="..." label="..." /> &;lt;/s:treenode> <s:treenode id="..." label="..." /> </s:tree> <-- dynamically --> <s:tree id="..." rootNode="..." nodeIdProperty="..." nodeTitleProperty="..." childCollectionProperty="..." />
@s.tag name="treenode" tld-body-content="JSP" tld-tag-class="org.apache.struts2.views.jsp.ui.TreeNodeTag"description="Render a tree node within a tree widget."