xsl-list
[Top] [All Lists]

RE: making div section with xsl invisible

2004-03-24 09:33:40




When looking at the rendered source code, it does appear correct.  When I
cut and paste the rendered html part in a simple html page the div section
does not show, but it does show when xsl renders the page.  So it doesn't
appear to be a browser issue, by the way I am using IE 6.0.

<div style="visibility:hidden">
<tr>
<td>
Total number:</td>
</tr>
</div>




visibility:hidden is correct, there isnt a problem with your code.

display:none is different as it doesn't occupy any space.

As per usual, write the html first then once that is correct write the
xslt to produce that html.


<div style="display:none">
  <tr>
     <td>
       Total number: <xsl:value-of select="$foo"/>
     </td>
  </tr>
</div>

Yov(_at_)nis






In my xsl template I have the following code snippet.

<div style="visibility:hidden">
  <tr>
     <td>
       Total number: <xsl:value-of select="$foo"/>
     </td>
  </tr>
</div>

When I render the page this div section still appears.  I
also tried using the following with the same reuslts.

<div><xsl:attribute name="style">visibility:hidden</xsl:attribute>

Am I missing something simple here?

Thanks