xsl-list
[Top] [All Lists]

Re: Hi everbody

2003-01-10 00:59:20
Hello,

welcome to the list.

Sai, Mukundan (IE10) wrote:
Hi ,
I have a problem ..
I have an xml document say "test.xml" & a xsl say "compare.xsl"
in the xsl i have to do some error checkin .. ie i have to check whether all
the attribute r present or not that i am ale to do usin <xsl:if test="not[(_at_)attibute]" >

<xsl:if test="@attribute"/> or <xsl:if test="not(@attribute)"/>

 ...i also want to check if a node exists  for ex :
 <node>
 <childnode> ..<childnode>
<node>
>
 how do i check if the child node "childnode"  exists or not ....

even simpler:

<xsl:if test="childnode"/> or <xsl:if test="not(childnode)"/>

This works, because the child:: axis is the default one. So in the extended version it's <xsl:if test="child::childnode"/>. The context node must of course be <node/>, because it has <childnode/> as child.

Regards,

Joerg

 waiting for u solution ..
thnx in advance  ..
Sai Mukund


XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



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