Show TOC Start of Content Area

Background documentation launchedNavNode  Locate the document in its SAP Library structure

Exposes the navigation node that was launched by the most recent navigation.

The node generally is the same as the node exposed by the selectedNavNode tag, but may be different. For example, if the user selects a folder node, the portal launches within the content area the first child node within the folder. The folder node is exposed by the selectedNavNode tag and the launched iView or page node is exposed by the launchedNavNode tag.

Attributes

Name

Mandatory

Description

navNode

No

The name of the Java variable to create for holding the INavigationNode object for the node that was launched by the most recent navigation.

The variable is accessible in scriptlets in the body of the tag.

Variables

Name

Scope

Description

<navNode> attribute

Body of tag

INavigationNode object representing the launched node.

Example

The following displays the title of the current node.

<nav:launchedNavNode navNode="myNode">

   You are in: <%=myNode.getTitle(request.getLocale())%>

</nav:launchedNavNode>

See Also

·        selectedNavNode

 

End of Content Area