widness
1/15/2018 - 6:07 PM

Sort

Sort an xsl:template

  <xsl:template match="buchhandel">
    
    <xsl:apply-templates select="buchwahl">
      <xsl:sort select="@ersch-jahr" order="descending"/> <!-- ascending -->
      <xsl:sort select="buchautor[1]"/>
    </xsl:apply-templates>
    
  </xsl:template>
  
  <xsl:template match="buchwahl">
    ...
  </xsl:template>