xsl-list
[Top] [All Lists]

Re: How to check parent node is available in XSL.

2005-08-25 23:35:17
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(_at_)yahoo(_dot_)com> 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

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