Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Any easy way to do this in XSLT?
Listing child nodes is easy, but what about sorting them alphabetically?
Thanks
Hi,
you can sort in XSLT. For example:
<xsl:for-each ....>
<xsl:sort select="@nodeName" order="ascending"/>
</xsl:for-each>
HTH,
Peter
Perfect, thanks!
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
List child nodes alphabetically
Any easy way to do this in XSLT?
Listing child nodes is easy, but what about sorting them alphabetically?
Thanks
Hi,
you can sort in XSLT. For example:
HTH,
Peter
Perfect, thanks!
is working on a reply...