This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: Printing Null Values with XSLT



> Now, what I want to happen is to add some XSLT language that would
> be able to not print, say, a Default column if, and only if, there
> is no value associated it to it. If it does find it, then it prints
> it.

I would start by defining boolean variables, one for each column,
to determine whether the column is needed, e.g.

<xsl:variable name="include_description" 
select="boolean(item/@description[.!=''])"/>

This will be true if at least one of the <item> elements has a "description"
attribute
whose value is other than "".

Then when printing the header and other rows, test this variable:

<xsl:if test="$include_description">
  <td><xsl:value-of select="@description"/></td>
</xsl:if>

Mike Kay


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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]