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 · an will always select exactly one of the available xsl:when or xsl:otherwise The children of the element are tested, in order from top to bottom, until a test attribute on one of …

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

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

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

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

    75 Currently i have a xsl with following code where I'm trying print out "count" only if it is not equal to N/A. but seems like "!=" is not working.

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

  8. xml - xsl: how to split strings? - Stack Overflow

    Jan 30, 2011 · <xsl:value-of select="address"/> and I would like to modify this XSLT fragment to split on semicolon. update: Apparently the answer involves the use of <xsl:call-template> and …

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

  10. Usage of XSLT Params; <xsl:param> & <xsl:with-param>

    Oct 27, 2015 · On the side of the caller/initiator of the template/transformation, parameters are passed by using an xsl:with-param instruction. it can be a child of xsl:apply-templates or …