xsl-list
[Top] [All Lists]

[xsl] XSLT recursive template to check grand parent

2007-04-18 07:35:45
Hello Group,
                I am trying to develop a recursive template to check grand 
parent of a node and print some child info about grand parent. I face some 
problem  of selecting grand parent in the recursive template. I have put xslt 
template for your information

<xsl:template name="urlParentTemplate">
<xsl:param name="parent"/>
<xsl:value-of select="concat('*',$parent/YMIA:Id)"/>
<xsl:if test="ancestor::$parent[2]"> <!-- it gives error here -->
<xsl:call-template name="urlParentTemplate">
<xsl:with-param name="parent" select="ancestor::*[2]"/><!-- it gives error here 
too-->
</xsl:call-template>
</xsl:if>
</xsl:template>

- R

__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

--~------------------------------------------------------------------
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>