This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: Filtering elements of a tree


Heppa,

> I want to select the element artist with id=7 and its parent, 
> grand parent and so on.
> After transformation the xml should look like this-
> 
> <TreeNode id="5" Text="music">
>  	<TreeNode id="6" Text="blues">
>  		<TreeNode id="7" Text="bb king"/>
>  	</TreeNode>
>  	<TreeNode id="6" Text="jazz">
>  		<TreeNode id="11" Text="bebop">
>  			<TreeNode id="7" Text="charlie parker"/>
>  		</TreeNode>
>  		<TreeNode id="7" Text="miles davis"/>
>  	</TreeNode>
> </TreeNode>

<xsl:template match="*">
  <TreeNode>
    <xsl:copy-of select="@*" />
    <xsl:apply-templates select="*[@id = '7' or descendant::*/@id = '7']"/>
  </TreeNode>
</xsl:template>

There are better solutions,

Santtu

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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]