|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: how to extrac some child nodes and show. please he
Hi,
> i want to show the xml file in this method:
> id 1.1 nombre 1.1 apellido 1.1
> id 2.1 nombre 2,1 apellido 2.1
> - id 2.1.1 nombre 2.1.1 apellido 2.1.1
> -- id 2.1.1.1 nombre 2.1.1.1 apellido 2.1.1.1
> id 2.2 nombre 2.2 apellido 2.2
The last one should probably have a leading hyphen, right? Anyhow,
<xsl:template match="padre | hijo">
<xsl:for-each select="ancestor::*[self::hijo or self::padre]">-</xsl:for-each>
<xsl:value-of select="id_cliente"/>
<xsl:text> </xsl:text>
<xsl:value-of select="nombre_cliente"/>
<xsl:text> </xsl:text>
<xsl:value-of select="apellido_cliente"/>
<xsl:text>
</xsl:text>
<xsl:apply-templates select="hijo"/>
</xsl:template>
Cheers,
Jarno - The Dust of Basement: Inside
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
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








