xsl-list
[Top] [All Lists]

RE: getting all parent elements for breadcrumb nav

2003-12-16 09:33:44
FAQ,

I am working on an application that uses the xbel dtd
for a set of bookmarks. In the xslt I am writing, I
want to create a breadcrumb navigation item at the top
so that the user can walk up and down the folders. I
pass in a folderID in the xml so that I can show the
proper folder and need to somehow grab all of that
folder's parent elements and put them into a
breadcrumb navigation line (Top folder > sub folder >
sub folder).

  <xsl:for-each select="ancestor::folder">
    <xsl:value-of select="title"/>
    <xsl:text> &gt; </xsl:text>
  </xsl:for-each>

when bookmark is the current node.

Cheers,

Jarno

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



<Prev in Thread] Current Thread [Next in Thread>