Re: [xsl] recursive call-template problem

Subject: Re: [xsl] recursive call-template problem
From: omprakash.v@xxxxxxxxxxxxx
Date: Tue, 15 Mar 2005 08:44:12 +0530
Hi,
        Thanks. This suggestion worked.

Aron,
         Thanks for replying. But Im afraid your solution wasn't of much
help. I already have a recursive call-template with a param that
incrementing by 1. To use your's I would have to have another param that
decrements.

Cheers,
Omprakash.V







                                                                                                                   
                    David                                                                                          
                    Carlisle             To:     xsl-list@xxxxxxxxxxxxxxxxxxxxxx                                   
                    <davidc@xxxxx        cc:     (bcc: omprakash.v/Polaris)                                        
                    o.uk>                Subject:     Re: [xsl] recursive call-template problem                    
                                                                                                                   
                    03/14/2005                                                                                     
                    05:49 PM                                                                                       
                    Please                                                                                         
                    respond to                                                                                     
                    xsl-list                                                                                       
                                                                                                                   
                                                                                                                   





Usually the depth you need is derivable from the structure of the source
and you don't need an explict depth param, eg:

<xsl:for-each select="ancestor::*">
<td>&nbsp;</td>
</xsl:for-each>


However if you do need a depth param and want to make $depth such tds
the easiest way is


<xsl:for-each select="(//*)[position() &lt;= $depth]">
<td>&nbsp;</td>
</xsl:for-each>

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
________________________________________________________________________






This e-Mail may contain proprietary and confidential information and is sent for the intended recipient(s) only. 
If by an addressing or transmission error this mail has been misdirected to you, you are requested to delete this mail immediately.
You are also hereby notified that any use, any form of reproduction, dissemination, copying, disclosure, modification,
distribution and/or publication of this e-mail message, contents or its attachment other than by its intended recipient/s is strictly prohibited.

Visit Us at http://www.polaris.co.in

Current Thread