xsl-list
[Top] [All Lists]

Re: recursive call-template problem

2005-03-14 20:14:12


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(_at_)lists(_dot_)mulberrytech(_dot_)com                                
   
                    <davidc(_at_)nag(_dot_)c        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
________________________________________________________________________

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--






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

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>