I currently have a field in my xsl as follows:
<s:FineAmount>
<xsl:value-of select="FineAmount" />
</s:FineAmount>
The issue is the the value of the field can be '-1.0000'. I do not want to send the value if it is -1.0000. How can I filter it?
I currently have a field in my xsl as follows:
<s:FineAmount>
<xsl:value-of select="FineAmount" />
</s:FineAmount>
The issue is the the value of the field can be '-1.0000'. I do not want to send the value if it is -1.0000. How can I filter it?