Tagged Questions
2
votes
2answers
63 views
XSLT Not Taking When Test Selection
I've been working on something for my boss, a website that displays the web-services of a ticketing system. The web-service spits out an XML file based on a query. My problem is, when I try to set ...
2
votes
3answers
145 views
'Characters only' check in xsl string?
How can i check if a string include only characters (XSLT File)?
<xsl:variable name="IsValid1">
<xsl:choose>
<xsl:when test="string-length(//FirstName) > 0 and ...
1
vote
2answers
368 views
When test hanging in an infinite loop
I'm tokenising a string with XSLT 1.0 and trying to prevent empty strings from being recognised as tokens. Here's the entire function, based on XSLT Cookbook:
<xsl:template name="tokenize">
...
0
votes
2answers
72 views
How Can I Reduce “When” Statement in XSLT
Hello I am writing a XSLT statement where I need to implement 1500 conditional statements like -
<xsl:when test="ID = '51'">
<br>
<xsl:text>background: ...
-1
votes
2answers
47 views
XSL condition statement
i have a problem with this statement :
<xsl:choose>
<xsl:when test="cars[@id='1']">
<xsl:choose>
<xsl:when test="cars[@id='1']='1'">true</xsl:when>
...