Hi,
There must be a reason why I can write
<xsl:variable name="x" select="if ($cond) then 1 else 0"/>
<xsl:copy-of select="abc[position() gt $x]"/>
but not
<xsl:copy-of select="abc[position() gt if ($cond) then 1 else 0]"/>
What is the reason? Is there any way to avoid having to declare the
variable?
Thank you,
Regards,
Andre
--~------------------------------------------------------------------
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>
--~--