About 20,400,000 results
Open links in new tab
  1. Using an HTML entity in XSLT (e.g. ) - Stack Overflow

    There is certain difference in the result as compared to <xsl:text disable-output-escaping="yes"> approach. The latter one is going to produce string literals like &nbsp; for all kinds of output, even for …

  2. How to group and sum values in XSLT - Stack Overflow

    For each "agency" node I need to find the "stmt" elements that have the same key1, key2, key3 values and output just one "stmt" node with the "comm" and "prem" values summed together. For any "stmt"

  3. Which browser can show XML data transformed by XSLT?

    There are two files, one .xml containing data and one .xsl with the XSLT script for transformation. As of August, 2010, all leading browsers support client side XSLT transformation. Open the .xml file and …

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

  5. xml - XSLT : Creating a Map in XSLT - Stack Overflow

    However, you don't need to use xsl:variable for this. You could specify your map node directly under xsl:stylesheet, but you must remember that a top level elements must have a non null namespace URI:

  6. 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 would like to define

  7. How can I convert a string to upper- or lower-case with XSLT?

    Learn how to convert strings to upper or lower case using XSLT in this Stack Overflow discussion.

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

  9. XSLT output formatting: removing line breaks, and blank output lines ...

    You wrote "I have tried <xsl:strip-space elements="*"/> but this eliminates all indentation" That's true only for input sources. And by the way, it solves problems 2 and 3.

  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 xsl:call-template. …