Show TOC

Background documentationifNavNodeIsNavZoom Locate this document in the navigation structure

 

Includes its body if the current node is set to be a navigation zoom.

Cooperating Tags

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

  • contextNavNode

  • iterateInitialNavNodes

  • iterateNavNodeChildren

  • iterateNavNodesInSelectedPath

  • iterateSelectedNavNodesLevel

  • launchedNavNode

  • navNode

  • navNodeParent

  • recallNavNode

  • recurseNavNodeChildren

  • selectedNavNode

Example

The following creates a link for opening a navigation node as a navigation zoom.

Syntax Syntax

  1. <nav:ifNavNodeIsFolder>
        <nav:ifNavNodeIsNavZoom>
            <nav:navZoomAnchor anchorAttributes="class='zoomLink'"/> 
        </nav:ifNavNodeIsNavZoom>
        <nav:ifNotNavNodeIsNavZoom> 
            <nav:navNodeAnchor navigationMethod="byURL"
             anchorAttributes="class='navLink'"/>
        </nav:ifNotNavNodeIsNavZoom>
    </nav:ifNavNodeIsFolder>
    
End of the code.