|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: R: [text nodes] Unmatching text nodes wrongl
> <xsl:template match="xdm:field"/> <!-- this is the empty template --> > > But how can I extend this concept to exclude not just the unwanted <field> > elements, but ANY element OTHER THAN those I need to render? <xsl:apply-templates/> selects all the children. If you only need one particular element, it's easier to select it in apply-templates: <xsl:apply-templates select="xdm:field[@name='CSBFT242']"/> and then the matching template will only be called for that element. <xsl:template match="xdm:fields"> <xsl:apply-templates select="xdm:field[@name='CSBFT242']"/> </xsl:template> <xsl:template match="xdm:field"> ... process that one field ... </xsl:template> HTH, Anton
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart


![Re: R: [text nodes] Unmatching text nodes wrongl](/images/get_stylus.gif)





