Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • sravani 50 posts 70 karma points
    Jun 03, 2011 @ 07:44
    sravani
    0

    3rd level navigation menu??

    Dear All,

    my 2nd level navigation is..

    <?xml version="1.0" encoding="UTF-8"?>

    <!DOCTYPE xsl:stylesheet [ <!ENTITY nbsp "&#x00A0;"> ]>

    <xsl:stylesheet 

      version="1.0" 

      xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 

      xmlns:msxml="urn:schemas-microsoft-com:xslt" 

      xmlns:umbraco.library="urn:umbraco.library"

      exclude-result-prefixes="msxml umbraco.library">

     

    <xsl:output method="xml" omit-xml-declaration="yes"/>

     

     

    <xsl:param name="currentPage"/>

    <xsl:template match="/">

     

    <xsl:variable name="items" select="$currentPage/ancestor-or-self::* [@isDoc and @level = 2]/* [@isDoc and string(umbracoNaviHide) != '1']"/>

     

    <!-- The fun starts here -->

    <xsl:if test="count($items) &gt; 0">

    <ul>

     

    <xsl:for-each select="$items">

      <li>

     <xsl:attribute name="class">

                  selected

                </xsl:attribute>

        <a href="{umbraco.library:NiceUrl(@id)}">

          <xsl:value-of select="@nodeName"/>

        </a>

      </li>

    </xsl:for-each>

    </ul></xsl:if>

    </xsl:template>

    </xsl:stylesheet>

    I need to add sub nodes for 2nd level navigation menu 

    like mainmenu1

            .submenu1

                  .submenu1.1

    Any Ideas pls share with me ... Thanks in advance.....

    Regadrs,

    Sravani

  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies