Hi Sylvia,
You can get rid of the for-each loop and access all documents at once,
like this:
<xsl:apply-templates select="document(/runs/case/@filename)/case">
<xsl:sort select="status" data-type="text" order="descending"/>
</xsl:apply-templates>
That should fix the sorting...
(With the for-each, the input documents are processed one by one, hence
the sort has no effect)
HTH,
Anton
Sylvia Murphy wrote:
Hi anton,
hope you had a nice holiday.
i tried replacing that "/case/status" with just "status" in
<xsl:for-each select="/runs/case">
<!--ascending or descending-->
<xsl:apply-templates select="document(@filename)/case">
<xsl:sort select="status" data-type = "text" order="descending"/>
</xsl:apply-templates>
</xsl:for-each>
still not seeing a sort. could the document(@filename)/case be fixing
things?
thanks,
sylvia
--~------------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--