xsl-list
[Top] [All Lists]

RE: How can I checking whether any one of my inter table contain border attribute

2004-09-23 04:56:31
Hi,

Ihave the following xhtml
<table>
      <tr>
              <td>
                      <table border="1">
                      </table>
              </td>
              <td>
                      <table>
                              <tr>
                                      <td>
                                              <table border="1">
                                              </table>
                                      </td>
                              </tr>
                      </table>
              </td>
      </tr>
</table>
How can I checking whether any one of my  inter table contain border
attribute and I want to retrieve that value

I tried the following template .But it is not working
<xsl:if test="ancestor::table/@border">
</xsl:if>

This will check if the current node has an ancestor table what has a border 
attribute. descendant::table/@border will give you a node-set of the border 
attributes, use test="descendant::table/@border" instead of the above test, and 
<xsl:value-of select="descendant::table/@border"/> will give you the value of 
the first @border in document order.

Cheers,

Jarno



<Prev in Thread] Current Thread [Next in Thread>
  • RE: How can I checking whether any one of my inter table contain border attribute, Jarno.Elovirta <=