Show TOC

ifNavNodeEqualsLaunchedNavNodeLocate this document in the navigation structure

Use

Includes its body if the current node is the node that was launched during the most recent navigation.

You can use it to emphasize a navigation node that is currently launched in a detailed navigation iView by adding code in the ifNavNodeEqualsLaunchedNavNode tag during an iteration through all the navigation nodes.

Cooperating Tags

The tag must be nested in one of the following tags:

  • contextNavNode

  • iterateInitialNavNodes

  • iterateNavNodeChildren

  • iterateNavNodesInSelectedPath

  • iterateRelatedNavNodes

  • iterateSelectedNavNodesLevel

  • launchedNavNode

  • navNode

  • navNodeParent

  • recallNavNode

  • recurseNavNodeChildren

  • selectedNavNode

Example

The following displays the current node in the iteration with a different style depending on whether the node is the launched node.

            <nav:ifNavNodeEqualsLaunchedNavNode>
    <strong><nav:navNodeAnchor navigationMethod="byURL"/></strong>
</nav:ifNavNodeEqualsLaunchedNavNode>
<nav:ifNotNavNodeEqualsLaunchedNavNode>
    <nav:navNodeAnchor navigationMethod="byURL"/>
</nav:ifNotNavNodeEqualsLaunchedNavNode>

         
More Information