Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeUsing DNN Platf...Using DNN Platf...Skins, Themes, ...Skins, Themes, ...Horizontal DDR menu: Need to always show current child menuHorizontal DDR menu: Need to always show current child menu
Previous
 
Next
New Post
8/1/2013 12:31 PM
 

Current test site is here:  http://cato.maticeinteractive.com

If you are on top level page that has a sub-menu, I want the sub-menu to show.
If you are on a sub-menu page that has a sub-sub-menu, I want the sub-sub-menu to show.

Obviously I can't seem to get my xslt correct for this to happen.  Here's what I've got (my base code that works). I've tried all sorts of things but none seem to do what I want.

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
     <xsl:output method="html"/>
    <xsl:param name="menuType"></xsl:param>
     <xsl:template match="/*">
           <xsl:apply-templates select="root" />
     </xsl:template>
     <xsl:template match="root">
        <ul>
            <xsl:attribute name="class">menu<xsl:text>&#32;</xsl:text><xsl:value-of select="$menuType"/></xsl:attribute>        
               <xsl:apply-templates select="node" />
          </ul>
     </xsl:template>
     <xsl:template match="node">
          <li>
               <xsl:attribute name="class">
                    <xsl:if test="@breadcrumb = 1"><xsl:text>current
                </xsl:text></xsl:if>
               </xsl:attribute>     
               <xsl:choose>
                    <xsl:when test="@selected = 1">
                         <xsl:apply-templates select="node" />
                    </xsl:when>
                    <xsl:when test="@enabled = 1">
                         <a href="{@url}">
                              <xsl:value-of select="@text" />
                         </a>
                    </xsl:when>
                    <xsl:otherwise>
                         <xsl:value-of select="@text" />
                    </xsl:otherwise>
               </xsl:choose>
               <xsl:if test="node">
                    <ul>
                         <xsl:apply-templates select="node" />
                    </ul>
               </xsl:if>
          </li>
     </xsl:template>
</xsl:stylesheet>

Thanks for any help!

 
Previous
 
Next
HomeHomeUsing DNN Platf...Using DNN Platf...Skins, Themes, ...Skins, Themes, ...Horizontal DDR menu: Need to always show current child menuHorizontal DDR menu: Need to always show current child menu


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out