NetUI Tag Library Documentation (Version 1.0.2)

netui
netui:treeContent Tag

Set the additional content that will be displayed on the right of the label of a tree.

Syntax

<netui:treeContent>
    ... JSP content ...
</netui:treeContent>

Description

Set the additional content that will be displayed on the right of the label of a tree.

Example

The following example shows a <netui:tree> tag with both a child <netui:treeLabel> and <netui:treeContent> tag that form the label and the additional text displayed to the righ of the label for the root folder of the tree.

    <netui:tree dataSource="pageFlow.myTree" selectionAction="postback" tagId="myTree">
        <netui:treeItem expanded="true" >
            <netui:treeLabel>Root Folder</netui:treeLabel>
            <netui:treeContent>Content to right of label: Root Folder</netui:treeContent>
        </netui:treeItem>
    </netui:tree>


Tag Information
Tag Classorg.apache.beehive.netui.tags.tree.TreeContent
TagExtraInfo ClassNone
Body Contentscriptless
Display NameNone

See Also

<netui:tree> Tag

org.apache.beehive.netui.tags.tree.TreeElement