|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: Getting Duplicate value while retrieving
Hi,
> <xsl:for-each select="ENTRY[1]/PARA">
> <xsl:if test="position() > 1">
> <tr>
> <td>
> <xsl:value-of select="."/>
> </td>
> <td>
> <xsl:value-of select="../following-sibling::*[1]"/>
Here you're creating a text node with the string value of the second ENTRY, thus you get the concenation of the PARA values. Rewrite it to e.g.
<xsl:for-each select="ENTRY[1]/PARA[position() > 1]">
<xsl:variable name="position" select="position()"/>
<tr>
<td>
<xsl:value-of select="."/>
</td>
<td>
<xsl:value-of select="../following-sibling::ENTRY[1]/PARA[$position + 1]"/>
</td>
</tr>
</xsl:for-each>
Cheers,
Jarno - Viola: Violentia
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








