[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: incrementing the index value

Subject: Re: incrementing the index value
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 9 Jun 2005 14:00:19 +0100
templaes
If you wantto use position() then you need to make sure that you only
select the nodes you want

If you do this:

	<xsl:for-each select="child::*">
		<xsl:choose>
			<xsl:when test="self::textbox">

then all element children will be selected (and get a position,
accordingly, but you only use textbox children so there will be gaps in
your ordering.

If instead you do

<xsl:for-each select="textbox">
		<xsl:call-template name="getintoBox"/>
then only testbox children will be selected 

using xsl:for-each and call-template makes things unnecessarily
complicated, it would be more natural to templaes using match= rather
than name= and then use

<xsl:apply-templates select="textbox"/>

I think in this case you want

<xsl:template match="Layout">
<taborder>
<fieldlist>
 <xsl:apply-templates select="Box/textbox"/>
</fieldlist>	
</taborder>	
</xsl:template>

<xsl:template match="textbox">
 <field name="{@id}" tabindex="{position()}"/>
</xsl:template>



> I want to use the variable and incretment the count. 

Your code (and my modification of it) don't use variables so I didn't
understand this comment.

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

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.