xsl-list
[Top] [All Lists]

RE: [xsl] Issue with child:: element

2006-11-21 09:26:42

Thank you for your response Michael.

But what is happening is that since in the "note" template itself, Iam testing if the "parent" elements are level1 ...level6, then I say dont do anything, otherwise display Note.

And now again, under "level1" template when I say if the first child is a note then display tht. So untilately it is checking only for first child note. If there is another note element inside "level1" it does not display it.

That is the issue I am facing. Can you please suggest something?


From: "Michael Kay" <mike(_at_)saxonica(_dot_)com>
Reply-To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
To: <xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com>
Subject: RE: [xsl] Issue with child:: element
Date: Mon, 20 Nov 2006 23:20:31 -0000

>                    <xsl:if test="child::*[1][self::note]">
>                            <xsl:apply-templates
> select="note" mode="level1"/>
>                    </xsl:if>
>

That says "if the first child is a note then display all the child notes."

I suspect you wanted to say "if the first child is a note then display it".

That's simply:

<xsl:apply-templates select="child::*[1][self::note]" mode="level1"/>

(which does nothing if the first child is not a note).

Michael Kay
http://www.saxonica.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>
--~--


_________________________________________________________________
Talk now to your Hotmail contacts with Windows Live Messenger. http://clk.atdmt.com/MSN/go/msnnkwme0020000001msn/direct/01/?href=http://get.live.com/messenger/overview


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