[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

[xsl] updating xsl:variable inside the loop


Subject: [xsl] updating xsl:variable inside the loop
From: Arulraj <p_arulraj@xxxxxxxxx>
Date: Thu, 29 Jan 2004 03:11:54 -0800 (PST)

Hi,
  I am using xsl:variable inside the loop.
xsl:variable should be updated in next iteration. 
How to do this?

Problem with xsl:variable usage
Please tell me solution for this.
Thanks in advace
Regards
Arul

My XML file content
		<caption name="User name" rowindex="1">
		<caption name="Address" rowindex="1">
		<label name="street" rowindex="2">
		<combo name="country" rowindex="2"/>
		<caption name="Job" rowindex="3">
		<caption name="Profil" rowindex="3">
		

My XSL file content
		
	<xsl:variable name="rowindextmp">0</xsl:variable>
	     <xsl:for-each select="child::*">
		<xsl:if test="($rowindextmp &lt; @rowindex)">
			<xsl:variable name="rowindextmp"
select="@rowindex"/>
			<xsl:text>tableRow = new H2WTableRow<xsl:text>);
    			</xsl:text>
			
		</xsl:if>
			caption or label or combo process goes here....


Expected output is:
 
  tableRow = new H2WTableRow
	caption
	caption
  tableRow = new H2WTableRow
	label
	combo
  tableRow = new H2WTableRow
	caption
	caption



=====
¤º°`°º¤ø,¸¸,ø¤º°`°º¤ø,¸¸,ø¤º°`°º¤ø,¸¸,ø¤º°`°º¤ø¤º°`°º¤ø,¸¸,ø¤º
                      Arulraj   Chennai, India
¤º°`°º¤ø,¸¸,ø¤º°`°º¤ø,¸¸,ø¤º°`°º¤ø,¸¸,ø¤º°`°º¤ø¤º°`°º¤ø,¸¸,ø¤º

__________________________________
Do you Yahoo!?
Yahoo! SiteBuilder - Free web site building tool. Try it!
http://webhosting.yahoo.com/ps/sb/

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



Current Thread
Keywords