This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

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


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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]