XML Editor
Sign up for a WebBoard account Sign Up Keyword Search Search More Options... Options
Chat Rooms Chat Help Help News News Log in to WebBoard Log in Not Logged in
Show tree view Topic
Topic Page 1 2 3 4 5 6 7 8 9 Go to previous topicPrev TopicGo to next topicNext Topic
Postnext
marla marlaSubject: iterate in a for-each element
Author: marla marla
Date: 07 Jul 2005 08:26 AM
Originally Posted: 07 Jul 2005 08:21 AM
Hi, I understand you can't assign variables. I wonder how you can iterate with an index in a for loop, and to make it even more complex i need this index so i can change the name of the input according to the iterator, such that each row will have a name concated with an incremented number The following of course does NOT work: <CODE> <xsl:variable name="iLineNumber" select="1"/> <xsl:for-each select="table/line"> <tr> <td> <xsl:copy-of select="$strLength"/> <input type="hidden" name=concat("line","$iLineNumber") value="10"/> <input type="text" name=concat("tbRemark","$iLineNumber") size="50" /> </td> </tr> [some sort of: $iLineNumber++] </xsl:for-each> </CODE> Any ideas on how I can achieve some this stuff? Thanks, Marla.

Posttop
Ivan PedruzziSubject: iterate in a for-each element
Author: Ivan Pedruzzi
Date: 07 Jul 2005 10:20 AM
Hi Marla

In XSLT if you need to loop on a counter you have to use a recursive function (http://en.wikipedia.org/wiki/Recursive_function).

In this case you may try to use the position() function as index

<CODE>
<xsl:for-each select="table/line">
<tr>
<td>
<xsl:copy-of select="$strLength"/>
<input type="hidden" name="{ concat(line, position()) }" value="10"/>
<input type="text" name="{ concat(tbRemark, position()) }" size="50" />
</td>
</tr>
</xsl:for-each>
</CODE>

Hope this helps
Ivan Pedruzzi
Stylus Studio Team

 
Topic Page 1 2 3 4 5 6 7 8 9 Go to previous topicPrev TopicGo to next topicNext Topic
Download A Free Trial of Stylus Studio 6 XML Professional Edition Today! Powered by Stylus Studio, the world's leading XML IDE for XML, XSLT, XQuery, XML Schema, DTD, XPath, WSDL, XHTML, SQL/XML, and XML Mapping!  
go

Log In Options

Site Map | Privacy Policy | Terms of Use | Trademarks
Stylus Scoop XML Newsletter:
W3C Member
Stylus Studio® and DataDirect XQuery ™are from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2016 All Rights Reserved.