About 50 results
Open links in new tab
  1. when to use xsl:if and when to use xsl:choose/xsl:when in XSLT

    Sep 11, 2013 · <xsl:if test="expression"> output if the expression is true </xsl:if> Use xsl:choose for cases where you have some alternate output when the expressions is false.

  2. What's the difference between XSLT and XSL-FO? - Stack Overflow

    Apr 11, 2009 · What about the Wikipedia definition? XSL Formatting Objects, or XSL-FO, is a markup language for XML document formatting which is most often used to generate PDFs. XSL-FO is part …

  3. How to implement if-else statement in XSLT? - Stack Overflow

    Nov 29, 2012 · Learn how to implement if-else statements in XSLT using templates and conditional expressions for efficient XML transformations.

  4. Producing a new line in XSLT - Stack Overflow

    Apr 16, 2015 · Learn how to produce a new line in XSLT with practical examples and expert advice on Stack Overflow.

  5. xslt - What are the differences between 'call-template' and 'apply ...

    With <xsl:apply-templates> the current node moves on with every iteration, whereas <xsl:call-template> does not change the current node. I.e. the . within a called template refers to the same node as the . …

  6. what's the relationship between XSL and XSLT - Stack Overflow

    Jan 9, 2014 · XSL Formatting Objects (XSL-FO): an XML language for specifying the visual formatting of an XML document the XML Path Language (XPath): a non-XML language used by XSLT, and also …

  7. xslt - Conditional AND OR two different values - Stack Overflow

    Mar 28, 2011 · I have a concatenation of AND and OR for 2 different variables. And I tried the following:

  8. Can you put two conditions in an xslt test attribute?

    Nov 25, 2008 · Learn how to use multiple conditions in an XSLT test attribute effectively with examples and expert advice on Stack Overflow.

  9. How do I specify "not equals to" when comparing strings in an XSLT …

    How do I specify "not equals to" when comparing strings in an XSLT <xsl:if>? Asked 13 years, 7 months ago Modified 5 years, 6 months ago Viewed 212k times

  10. How to insert in XSLT - Stack Overflow

    Learn how to insert non-breaking spaces in XSLT with practical examples and solutions for efficient XML transformations.