Hi not sure if this right place but i need some XSLT help.
Code:
<td class="text" align="center">
<xsl:for-each select="key('index', @id)">
<xsl:value-of select="@class"/>
</xsl:for-each>
</td>
I am pretty new to XSLT and from what I understand the above code is looping through the index and display anything under the @class. What is fine however I want to only display result where the @class = a certain word for example ture
How can I do this I have tried with xsl:if but I think I was doing it wrong any help would be really appreciated.
Thanks 
|