Mod functionality in MSXML Parser (http://www.w3.org/TR/WD-xsl)

Subject: Mod functionality in MSXML Parser (http://www.w3.org/TR/WD-xsl)
From: "Iyer, Srinivasan (MLIP - PCC)" <ISrinivasan@xxxxxxxxxxxxx>
Date: Fri, 11 Aug 2000 18:32:16 -0400
Hello,
I am using the MSXML Parser and using the following namespace
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl";>
I want to acheive the follwoing 
	xsl:if test='position() mod 2 = 0'> ///////// mod & psoition .....
	<TR class='even' ID='Data' style='cursor:hand'
onmouseout='javascript:RemoveHighlight()'
onmouseover='javascript:HighlightRow()'>
	</xsl:if>

my problem is I have to write the following to conform to the namespace
specification
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl";>
which supports neither mod nor position ....  ;-((

The only thing I could come up with is this ....
         <xsl:if expr="(childNumber(this) % 2) == 0"> but this does not work
....

Is using this namespace a potential problem ??????

Thanks
Srini

 
      





 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread