Show TOC

Background documentationifHasMoreIterations Locate this document in the navigation structure

 

Includes its body if the current node is not the last node in the current iteration.

To display a navigation path to the current node, for example, System Administration > Transport > Export, use this tag to display the links followed by the > separator, and the ifNotHasMoreIterations tag to display only the title of the last node.

Cooperating Tags

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

  • iterateInitialNavNodes

  • iterateNavNodeChildren

  • iterateNavNodesInSelectedPath

  • iterateRelatedNavNodes

  • iterateSelectedNavNodesLevel

  • recurseNavNodeChildren

Example

The following displays a separator if the iteration has more nodes.

Syntax Syntax

  1. <em>You are here:</em>
    <nav:iterateNavNodesInSelectedPath>
        <nav:ifHasMoreIterations>
            <nav:navNodeAnchor navigationMethod="byURL"/> >
        </nav:ifHasMoreIterations>
        <nav:ifNotHasMoreIterations>
            <nav:navNodeTitle/>
        </nav:ifNotHasMoreIterations>
    </nav:iterateNavNodesInSelectedPath>
    
End of the code.