Show TOC Start of Content Area

Background documentation ifNavNodeIsNavZoom  Locate the document in its SAP Library 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:

      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.

<nav:ifNavNodeIsFolder>
    <%
if(nodeIsOpen) { %>
        <nav:ifNavNodeIsNavZoom>

                <A href="/irj/servlet/prt/portal/prtroot/
com.sap.portal.navigation.helperservice.PortalPlaceRedirect?
ppLaunchURL="<%=currentNavNode%>
class="lightDTNText">
<nav:navNodeTitle/></A>

        </nav:ifNavNodeIsNavZoom>
        <nav:ifNotNavNodeIsNavZoom>
            <A href="<%=componentURI%>?<%=urlParameters%>" class="lightDTNText"><nav:navNodeTitle/></A>
        </nav:ifNotNavNodeIsNavZoom>

        ...

    <%
} %>
</nav:ifNavNodeIsFolder>

See Also

·        ifNot ... 

 

 

 

 

 

 

 

 

End of Content Area