I have a PDF ZEN report module that I'm using XslFoXslt to highlight the table cell.
What I need is for a particular value to add a background image to the <item> that is calling the XSLFoXslt
The code I have is the following but all that happens is the color.
XData XslFoXslt
{
<xsl:template name="HighLight">
<xsl:param name="Value"/>
<xsl:if test="$Value = 400">
<xsl:attribute name='background-image'>url("images/trash-icon.png")</xsl:attribute>
<xsl:attribute name='background-repeat'>no-repeat</xsl:attribute>
<xsl:attribute name='color'>#ffffff</xsl:attribute></xsl:if>
</xsl:template>
}
.jpeg)




