xsl-list
[Top] [All Lists]

RE: Hi everbody

2003-01-10 00:50:14
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]" >

Do you mean

  test="not(@attribute)"

i.e. there is no "attribute" attribute, or are you testing if there is a child 
element "not" that has "attribute" attribute (which is what your example 
tested)? Anyhow - 
 
 ...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 ....

Simply

  <xsl:template match="node">
    <xsl:if test="childnode">
      <!-- child node exists -->
    </xsl:if>
  </xsl:template>


Cheers,

Jarno - Stabbing Westward: ACF

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



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