XSLT – sort

  • Post author:
  • Post category:XSLT
  • Post comments:0 Comments

<xsl:sort> tag specifies a sort criteria on the nodes. Declaration Following is the syntax declaration of <xsl:sort> element. <xsl:sort select = string-expression lang = { nmtoken } data-type = { "text" |…

Continue ReadingXSLT – sort

XSLT – for-each

  • Post author:
  • Post category:XSLT
  • Post comments:0 Comments

<xsl:for-each> tag applies a template repeatedly for each node. Declaration Following is the syntax declaration of <xsl:for-each> element <xsl:for-each select = Expression > </xsl:for-each> Attributes Sr.NoName & Description1SelectXPath Expression to be evaluated…

Continue ReadingXSLT – for-each

XSLT – value-of

  • Post author:
  • Post category:XSLT
  • Post comments:1 Comment

<xsl:value-of> tag puts the value of the selected node as per XPath expression, as text. Declaration Following is the syntax declaration of <xsl:value-of> element. <xsl:value-of select = Expression disable-output-escaping = "yes" |…

Continue ReadingXSLT – value-of