Subject: Re: How to check parent node is available in XSL.
From: Mukul Gandhi <gandhi.mukul@xxxxxxxxx>
Date: Fri, 26 Aug 2005 12:05:17 +0530
|
Hi Arul,
Your context node is label. So you could write the following syntax
to check if a parent element exists..
<xsl:if test="parent::*">
<!-- instructions -->
</xsl:if>
If you want to specifically check for Box element, you should write
<xsl:if test="parent::Box">
<!-- instructions -->
</xsl:if>
Regards,
Mukul
On 8/26/05, Arulraj <p_arulraj@xxxxxxxxx> wrote:
> Hi,
>
> I am having the following XML.
>
> <Box id="$Output-Mitarbeiter" >
> <Box id="$Daten-Mitarbeiter">
> <label id="a_$Uerid">
> <value>test</value>
> </label>
> </Box>
>
> From the label, i want to check whether it got its
> parent node.
>
> Regards,
> Arul
|