Click here to Skip to main content
Licence 
First Posted 28 Feb 2002
Views 161,365
Bookmarked 44 times

Using XSLT to generate a multi-level tree menu from XML

By | 28 Feb 2002 | Article
A simple and generic way to use XSLT to generate a multi-level HTML tree menu from an XML source.

Sample Image - TreeFromXMLUsingXSLT.gif

Introduction

This article will demonstrate a simple and generic way to use XSLT to generate a multi-level HTML tree menu from an XML source. JScript is used for expanding and contracting the menu entries. (This requires a minimum of Internet Explorer 5. I have not tested this on any other browsers.)

The XML Source

This is a subset of the source XML (full XML source is in the zip file).

<menu>
 <entry>
  <text>In-House</text>
  <url>InHouse.htm</url>
  <entry>
   <text>Web Development</text>
   <url>WebDev.htm</url>
  </entry>
 </entry>
</menu>

The XSLT

For each menu entry, the XSLT processes it, then drills down until it has processed that entry's last child.

<?xml version="1.0" ?>
<xsl:stylesheet version="1.0" 
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">
 <xsl:for-each select="//menu/entry">
  <xsl:call-template name="SubMenu">
   <xsl:with-param name="strCSS">Parent IsVisible</xsl:with-param>
  </xsl:call-template>
 </xsl:for-each>
</xsl:template>

<xsl:template name="SubMenu">
 <xsl:param name="strCSS" />
 
 <xsl:variable name="strURL" select="url" />
 
 <div class="{$strCSS}">
  <xsl:choose>
   <xsl:when test="count(entry) > 0">
    <!-- Element has children, it can be expanded -->
    <input type="hidden" id="hidIsExpanded" value="0" />
    <label id="lblExpand" class="Expander" onclick="ExpanderClicked()">+
    </label>
   </xsl:when>
   <xsl:otherwise>
    <label class="Expander">  </label>
   </xsl:otherwise>
  </xsl:choose>
  
  <a href="{$strURL}"><xsl:value-of select="text" /></a>
  <xsl:for-each select="entry">
   <xsl:call-template name="SubMenu">
    <xsl:with-param name="strCSS">NotVisible</xsl:with-param>
   </xsl:call-template>
  </xsl:for-each>
 </div>
</xsl:template>

</xsl:stylesheet>

Transforming the XML on the server

ASP is used to perform server-side transformation of the XML.

<%
   dim xmlMenu
   dim xslMenu
   
   'Get the source XML
   set xmlMenu = server.CreateObject("Microsoft.XMLDOM")
   xmlMenu.async = false
   xmlMenu.load server.MapPath("TreeFromXMLUsingXSLT.xml")
   
   'Get the XSLT to transform the XML
   set xslMenu = server.CreateObject("Microsoft.XMLDOM")
   xslMenu.async = false
   xslMenu.load server.MapPath("TreeFromXMLUsingXSLT.xsl")
   
   'Transform the source XML using XSLT
   Response.Write xmlMenu.transformNode(xslMenu)
   
   set xmlMenu = nothing
   set xslMenu = nothing
%>

Controlling the menu entries

Client-side JScript is used to first determine whether a menu entry has been expanded or collapsed, and then adjusts the selected menu entry's style settings.

<script language="jscript">
function ExpanderClicked()
{
    //Get the element that was clicked
    var ctlExpander = event.srcElement;
    var ctlSelectedEntry = ctlExpander.parentElement;
    //Get all the DIV elements that are direct descendants
    var colChild = ctlSelectedEntry.children.tags("DIV");
    if(colChild.length > 0)
    {
        var strCSS;
        //Get the hidden element that 
        //indicates whether or not entry is expanded
        var ctlHidden = ctlSelectedEntry.all("hidIsExpanded");
      
        if(ctlHidden.value == "1")
        {
            //Entry was expanded and is being contracted
            ctlExpander.innerHTML = "+ ";
            ctlHidden.value = "0";
            strCSS = "NotVisible";
        }
        else
        {
            //Entry is being expanded
            ctlExpander.innerHTML = "- ";
            ctlHidden.value = "1";
            strCSS = "IsVisible";
        }
        //Show all the DIV elements that are direct children
        for(var intCounter = 0; intCounter < colChild.length; intCounter++)
        {
            colChild[intCounter].className = strCSS;
        }
    }
}
</script>

Style setting

CSS settings are used to specify if a menu entry should be visible or hidden. The IsVisible class sets the element to be displayed, as a block element. The NotVisible class sets the element to be hidden.

body
{
   font-family: Verdana;
   font-size: x-small;
}
.IsVisible
{
   display: block;
}
.NotVisible
{
   display: none;
}
.Expander
{
   cursor: hand;
   font-family: Courier;
}
.Parent DIV
{
   margin-Left: 15px !important;
}

The last setting (.Parent DIV) indicates that only the elements below the one with the "Parent" class, will have a margin. This is to prevent the root menu entries from also having a margin.

Using images instead of + and -

It is fairly simple to show images instead of a "+" and "-" next to each entry. To do this, alter the XSLT and replace the <label> element that is next to the link, with an <img> element. In the JScript, instead of setting the InnerHTML property of the ctlExpander variable, set the src attribute to show a different image. Here is an example:

Sample Image - TreeFromXMLUsingXSLT2.gif

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

MS le Roux

Web Developer

South Africa South Africa

Member

I live in the Northern Suburbs of Cape Town (South Africa).


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralJavaScript not working Pinmembersneakyhippie10:56 28 Aug '09  
GeneralRe: JavaScript not working Pinmembersneakyhippie10:59 28 Aug '09  
GeneralRe: JavaScript not working Pinmembersneakyhippie11:03 28 Aug '09  
GeneralCross-browser compatible JavaScript-code PinmemberKarl-Johan G2:09 14 Apr '08  
QuestionHow to use attribute to be a condition? Pinmembermathuros_paiboon5:27 18 Jul '05  
QuestionHow to use attribute to be a condition Pinmembermathuros_paiboon5:15 18 Jul '05  
GeneralIs it possible to create Tabular tree PinmemberKrisBabu0:05 30 Jul '04  
QuestionBug?? PinmemberHyperJ6:12 29 Oct '03  
Generalmozilla Pinsusswill_mad1:52 23 Jul '03  
GeneralRe: mozilla Pinmembermrameshchandra23:36 6 May '05  
GeneralRe: mozilla Pinmemberscotiniotis7:58 28 Jun '07  
GeneralTransfom using javascript Pinmemberfrostie22:58 23 Feb '03  
GeneralRe: Transfom using javascript PinmemberMS le Roux1:01 24 Feb '03  
GeneralRe: Transfom using javascript Pinmemberfrostie5:02 24 Feb '03  
GeneralRe: Transfom using javascript Pinmemberfrostie5:04 24 Feb '03  
GeneralRe: Transfom using javascript Pinmemberfrostie5:30 24 Feb '03  
GeneralPersistence PinmemberDACS23:01 4 Jul '02  
GeneralCan't get it working! Pinmemberchris B23:27 13 Jun '02  
i'm sorry but i'm new to XML and i can't get the script working
 
i've downloaded the .zip file and extract all the files into my web server and run the script.
 
all i get is :
 

Development Parent IsVisible
+      NotVisible
 

when i click the + button nothing happens!
 
Any ideas?  
 
ps: i'm using Internet explorer 6
 
chris B
GeneralRe: Can't get it working! PinmemberMS le Roux20:25 17 Jun '02  
GeneralRe: Can't get it working! PinmemberStephenWilliams0:09 9 Dec '02  
QuestionPictures? PinmemberDomenic [CPUA 0x1337]3:06 1 Mar '02  
AnswerRe: Pictures? PinmemberMarSCoZa3:15 1 Mar '02  
GeneralRe: Pictures? PinmemberDomenic [CPUA 0x1337]3:19 1 Mar '02  
GeneralRe: Pictures? PinmemberAnand Bisht0:35 25 Nov '02  
GeneralRe: Pictures? PinmemberMS le Roux0:51 25 Nov '02  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120529.1 | Last Updated 1 Mar 2002
Article Copyright 2002 by MS le Roux
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid