<sas:TreeNode>

Used to create a TreeNode which are used within the TreeView node. The TreeView should only contain a single TreeNode in its body. A TreeNode can contain zero or more TreeNodes in its body.

This tag must be nested within a sas:TreeView tag.

Syntax

<sas:TreeNode name="java.lang.String"
   [accessKey="java.lang.String"]
   [defaultImageAltText="java.lang.String"]
   [defaultImage="java.lang.String"]
   [description="java.lang.String"]
   [expanded="true|false"]
   [expandedImageAltText="java.lang.String"]
   [expandedImage="java.lang.String"]
   [id="value"]
   [instantiate="true|false"]
   [ref="java.lang.String"]
   [scope="page|request|session|application"]
   [tabIndex="int"]
   [target="java.lang.String"]
   [text="java.lang.String"]
   [title="java.lang.String"]
   [URL="java.lang.String"] />

<sas:TreeNode name="java.lang.String"
   [accessKey="java.lang.String"]
   [defaultImageAltText="java.lang.String"]
   [defaultImage="java.lang.String"]
   [description="java.lang.String"]
   [expanded="true|false"]
   [expandedImageAltText="java.lang.String"]
   [expandedImage="java.lang.String"]
   [id="value"]
   [instantiate="true|false"]
   [ref="java.lang.String"]
   [scope="page|request|session|application"]
   [tabIndex="int"]
   [target="java.lang.String"]
   [text="java.lang.String"]
   [title="java.lang.String"]
   [URL="java.lang.String"]>
      [<sas:TreeNode .../>]
      [<sas:StyleMapKey .../>]
      [<sas:SetProperty ...>
         The value to set on the parent tag
      </sas:SetProperty>]
      [Additional <sas:TreeNode>, <sas:StyleMapKey>, <sas:SetProperty> tags...]
</sas:TreeNode>

Attributes

accessKeykey entry used as access key for link.
defaultImageAltTextalternate text for the image displayed in the viewer.
defaultImagethe defaultImage String
descriptionThe description of the node
expandedthe expanded state of the node
expandedImageAltText
expandedImagethe expandedImage String
idCase-sensitive name used to identify the object instance.
instantiateFlag that, if true, indicates that a new instance of the underlying class should be loaded if one cannot be found in PageContext. Must be used with an id attribute.
namethe name String
refThe variable String value that represents an object created earlier in the same scope.
scopeThe scope (or page context) within which the reference is available.
tabIndexthe numeric order in which the tab key is used.
target
textthe text String
titledescriptive title of the URL link.
URLthe URL String

More Information

To view the documentation for the related TransformationBean, see com.sas.servlet.tbeans.models.TreeNodeInterface.

If you need to subclass the tag handler class for the sas:TreeNode tag, extend com.sas.taglib.servlet.tbeans.TreeNodeTag.