Re: [xsl] Problem with Output special char in HTML attribute

Subject: Re: [xsl] Problem with Output special char in HTML attribute
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 9 Dec 2004 10:45:15 GMT
   and be able to generate correct
  tabindex based on position. Then i need a mechanism that permits to
  increment a variable to use as value of tabindex <a> attribute.


the usual way to generate something based on position is to use the
position() function for example

<xsl:for-each select="something">
 <a href="#" tabindex="{position()}">link<xsl:value-of
 select="position()"/></a>


You clearly don't need a way to increment a variable (as there is no
way) and given your description, I doubt that you need a variable at
all.

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

Current Thread