Subject: RE: transforming one specific subtree only
From: Kay Michael <Michael.Kay@xxxxxxx>
Date: Wed, 8 Nov 2000 11:06:45 -0000
|
> <a>
> <b ID="b1">...</b1>
> <b ID="b2">...</b1>
> <b ID="b3">...</b1>
> <b ID="b4">...</b1>
> </a>
>
> In my stylesheet I have a global param $nodeId defined which
> gets assigned an ID from an argument sent to the processor, such as "b2".
>
> I would like to only transform the subtree whose root has the
> ID stored in $nodeId,
<xsl:template match="/">
<xsl:apply-templates select="a/b[@ID=$nodeId]"/>
</xsl:template>
Mike Kay
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|