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]

RE: xsl unique position


>
> I am losing the variable due to duplication
>
> <xsl:template match="Name">
> Name:
>  <xsl:element name="input">
>   <xsl:attribute name="type">text</xsl:attribute>
>   <xsl:attribute name="name">Name<xsl:value-of
> select="position()"/></xsl:attribute>

position() is the position of the node in the current node list, ie in the
sequence of nodes being processed by the current invokation of
xsl:apply-templates.

In this case, you could write (I'm using AVT's because I don't like typing):

<input type="text" name="Name{count(../preceding-sibling::*) + 1}"/>

Mike Kay
Software AG


 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]