Show TOC

launchedNavNodeLocate this document in the navigation structure

Use

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

The node is in most cases the same as the node exposed by the selectedNavNode tag, but may be different. For example, if the user selects a folder node, the first child node within the folder is launched in the content area. 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 can be accessed 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(componentRequest.getLocale())%>
</nav:launchedNavNode>