xsl-list
[Top] [All Lists]

RE: Getting Duplicate value while retrieving

2003-11-18 03:55:35
Hi,

     <xsl:for-each select="ENTRY[1]/PARA">
      <xsl:if test="position() &gt; 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



<Prev in Thread] Current Thread [Next in Thread>