Well, I am acutally able to answer my own question after some trail and error (blind luck).
The following line above:
<xsl:when test="entrydata[@columnnumber='0']/text = '0">
Should be like this:
<xsl:when test="entrydata[@columnnumber='0']/text[text()='0'">
and the...
I want to check to see what the value in a column is and produce some xsl code based on that value.
I am using the following xsl:choose/when :
<xsl:choose>
<xsl:when test="entrydata[@columnnumber='0']/text/text()">
<xsl:choose>
<xsl:when test="entrydata[@columnnumber='0']/text =...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.