Copied to clipboard

Flag this post as spam?

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


  • shine 43 posts 83 karma points
    May 20, 2013 @ 07:14
    shine
    0

    Submenu not dispaly in my xslt

    here is my css menu which i wnat to convert in xslt but problem is that the sub menu not display

    here is my css menu

     <div id="navigation">
                    <ul><li id='active'>
                    <a href='/index.html'>Home</a></li>
                    <li id='pg916406283472444280'>
                    <a href='/about-us.html'>About Us</a>
                    <div class='wsite-menu-wrap' style='display:none'>
                    <ul class='wsite-menu'>
                    <li id='wsite-nav-863485395226581217'>
                    <a href='/southeast-greenway-campaign-summary.html'>
                    <span class='wsite-menu-title'>Southeast Greenway Campaign Summary</span></a></li>
                    <li id='wsite-nav-611646911499402343'><a href='/faqs.html'>
                    <span class='wsite-menu-title'>FAQs</span></a></li></ul></div>

    </div>

    here is my xslt code

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

    <xsl:param name="currentPage"/>

    <xsl:template match="/">

    <!-- start writing XSLT -->
       
        <!--<div class='wsite-menu-wrap' style='display:none'>-->
         <ul >  
        <xsl:for-each select="$currentPage/ancestor-or-self::*/* [string(umbracoNaviHide) != '1' and @level = 2 ]">
           
              <li >
                  <span class="wsite-menu-title">
                     <xsl:if test="$currentPage/@id=@id or ($currentPage/@parentID=@id) or ($currentPage/parent::*/@parentID=@id)">
                      <xsl:attribute name="class">wsite-menu-wrap</xsl:attribute>
                    </xsl:if>
                    <strong>
                    <a>
                      <xsl:attribute name="href"><xsl:value-of select="umbraco.library:NiceUrl(@id)"/></xsl:attribute>
                      <xsl:value-of select="@nodeName" />
                    </a>
                    </strong>
                   <!-- <xsl:if test="count(child::* [string(umbracoNaviHide) != '1' and @level &lt;= 7 ]) &gt; 0">
                      
                            <div class="navigation" style="">                 
                          <xsl:call-template name="Subchild">
       
                          </xsl:call-template>                  
                           </div>
                   
                     </xsl:if>-->
                      </span>
            </li>
           
    </xsl:for-each>
    </ul>
        <!--</div>-->
             
    </xsl:template>
           
    <xsl:template name="Subchild">  
       
      <xsl:if test="count(child::* [string(umbracoNaviHide) != '1' and @level &lt;= 7 ]) &gt; 0">   
       <!-- <div class='wsite-menu-wrap' style='display:none'>-->
                 <ul class="wsite-menu" >
                    <xsl:for-each select="child::* [string(umbracoNaviHide) != '1' and @level &lt;= 7 ]">
                       
                    <li >
                        <span class="wsite-menu-title">
                    <xsl:if test="$currentPage/@id=@id or ($currentPage/@parentID=@id) or ($currentPage/parent::*/@parentID=@id)">
                    <xsl:attribute name="class">wsite-menu-wrap</xsl:attribute>
                  </xsl:if>
                            <a>
                              <xsl:attribute name="href">
                              <xsl:value-of select="umbraco.library:NiceUrl(@id)"/>
                              </xsl:attribute>            
                              <xsl:value-of select="@nodeName"/>                          
                            </a>              
                              <xsl:call-template name="Subchild">     
                              </xsl:call-template>
                            </span>
                         </li>
                       
                    </xsl:for-each>
                </ul> 
         <!-- </div>-->
     
      </xsl:if>
    </xsl:template>

    </xsl:stylesheet>

  • Fuji Kusaka 2203 posts 4220 karma points
    May 20, 2013 @ 09:38
    Fuji Kusaka
    0

    Hi,

    Can you show us the structure of your content section and how do you want your menu and submenu to display ?

    //fuji

  • 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