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: referring to previous elements


>     <xsl:for-each match="action">
>         <xsl:if test="current adq = previous adq">
>              <tr>table row</tr>
>         </xsl:if>
>         <tr> table row </tr>
>     </xsl:for-each>
> 
> I just want to do the above.
> i have to do a check between the current adq and the previous 
> adq and if they
> are same print the table row.
> If this is not yet clear kindly let me know.

    <xsl:for-each match="action">
        <xsl:if test="adq = preceding::adq[1]">
             <tr>table row</tr>
        </xsl:if>
        <tr> table row </tr>
    </xsl:for-each>

 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]