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]

RE: transforming one specific subtree only


> <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

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