AW: [xsl] Selecting out groups for a menu

Subject: AW: [xsl] Selecting out groups for a menu
From: "Zink, Juergen" <Juergen.Zink@xxxxxxxxxxxxxxxxxxxx>
Date: Tue, 14 Jan 2003 10:32:56 +0100
Hello John,

<snip>
>The first group contains all the pages that have no children and sorts them
in order by there priority the following groups >list by first the parent
group as the title and then the childrens below and list them by priority.
Unfortunatly this is all >over my head. Im trying my best to learn the
tutorials and figure out how i can do this but I am very stuck on how to
group >this like above. Thanks for any help or info you can give me -john

Select the children that have no children (first apply-templates) with
sorting
Select the children that have children (second apply-templates)
list by priority (third apply-templates)

Assuming there will be ever Pages with no children.

  <xsl:template match="/">
    <xsl:apply-templates select="PageHierarchy/Page[not(Page)]">
      <xsl:sort select="@priority" />
    </xsl:apply-templates>
    <xsl:apply-templates select="PageHierarchy/Page[Page]">
      <xsl:sort select="@priority" />
    </xsl:apply-templates>
  </xsl:template>

  <xsl:template match="Page">
    <xsl:if test="not(parent::Page) and Page">
      <xsl:text>--------space----</xsl:text>
      <xsl:element name="br"/>
    </xsl:if>
    <xsl:value-of select="@actualname"/>
    <xsl:element name="br"/>
    <xsl:apply-templates select="Page">
      <xsl:sort select="@priority" />
    </xsl:apply-templates>
  </xsl:template>

Kind regards,

Juergen Zink


*****************************************************************************
Diese E-Mail enthaelt vertrauliche und/oder rechtlich geschuetzte 
Informationen. Wenn Sie nicht der richtige Adressat sind oder diese 
eMail irrtuemlich erhalten haben, informieren Sie bitte sofort den 
Absender und vernichten Sie diese Mail. Das unerlaubte Kopieren 
sowie die unbefugte Weitergabe dieser Mail ist nicht gestattet.

This e-mail may contain confidential and/or privileged information. 
If you are not the intended recipient (or have received this e-mail 
in error) please notify the sender immediately and destroy this e-mail. 
Any unauthorized copying, disclosure or distribution of the material 
in this e-mail is strictly forbidden.
*****************************************************************************


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


Current Thread