MSXML4
I'm passing a script parameter into the xsl style sheet that tells me
what the sort field should be:
<xsl:param name="select_sort_field"/>
and then, within my for-each loop, I have the code to decide what to
sort by:
<xsl:for-each select="codes/value[code_type = $code_type]">
<xsl:choose>
<xsl:when test="$select_sort_field">
<xsl:sort select="*[name()=$select_sort_field]" />
</xsl:when>
<xsl:otherwise>
<xsl:sort select="code" />
</xsl:otherwise>
</xsl:choose>
<!-- <xsl:sort select="code" /> -->
<!-- <xsl:sort select="*[name()=$select_sort_field]" /> -->
-----------------------------------
but that's not working - I keep getting this error:
msxml4.dll error '80004005'
Keyword xsl:sort may not be used here.
------------------------------------
What am I doing wrong? The thing is, if I take out the entire choose,
and just use
<xsl:sort select="code" />
or
<xsl:sort select="*[name()=$select_sort_field]" />
it seems to work. The thing is, I wanted to make it bullet proof in
case the script invoking this style sheet doesn't pass in the
$select_sort_field parameter - if not passed in, I want it to sort by
"code".
TIA.
Hardy Merrill.
--~------------------------------------------------------------------
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>
--~--