About 12,500,000 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. 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.

  3. 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. …

  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 - Conditional statements in xsl - Stack Overflow

    Writing templates that match specific nodes and using <xsl:apply-templates> to make the XSLT processor choose the appropriate ones is superior to writing complex <xsl:if> or <xsl:choose> …

  6. 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 …

  7. 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.

  8. How do I generate a comma-separated list with XSLT/XPath?

    Nov 12, 2016 · I have this line: <xsl:value-of select="@Courses"/> which displays all the CSV but it doesn't look too user friendly. Is there any way to instead of comma, separate them by new …

  9. XSL if: test with multiple test conditions - Stack Overflow

    Jan 27, 2015 · I am trying to create a xsl condition to check if combinations of node are empty or not. I have tried below conditions but they do not work, does anyone have an idea as to how to …

  10. Defining XSLT Variables dynamically using xsl:choose

    Within my XSLT spreadsheet, I need to define an xsl:variable with one value or another depending on the value of an xml node. The code just below shows what I'm trying to do. I …