|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] 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
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








