[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Getting a <TableRow> where <Cell> doesn't contain

Subject: Re: Getting a <TableRow> where <Cell> doesn't contain a colspan attribute
From: Casper Voortman <casper.voortman@xxxxxxxxxxxx>
Date: Thu, 25 Jun 2009 19:54:12 +0200
Re:  Getting a <TableRow> where <Cell> doesn't contain
Hello David,

Thanks for the explanation.

What i indeed needed was a tablerow within the table where the cells didn't have a colspan. That way i can use that as the basis for generating the amount of <col> entries with some extra attributes (which weren't in the code yet). The later code wasn't correct yet cause i was trying some stuff out, which i maybe should have left out.

Regards,

Casper Voortman

Op 25 jun 2009, om 19:01 heeft David Carlisle het volgende geschreven:


ypu haven't really said what test you want (or why you need a test since
the for-each you have inside the test doesn't use the ColSpan attribute?


<xsl:when test="not(descendant::TableRow/Cell/@ColSpan)


is true if there are no ColSpan attributes



<xsl:when test="descendant::TableRow/Cell[not(@ColSpan)]


is true if there are Cell elements without a ColSpan attribute

 <xsl:for-each select="descendant::TableRow/Cell">
                        <col/>
                    </xsl:for-each>

That's going to give you a <col/> for every cell in the table, is that
really what you want?


perhaps you want to find if there is a row in which ever cell does not
span, and if so make a col/> for each element in the first such row.. in which case


<xsl:for-each select="descendant::TableRow[not(Cell/@ColSpan)][1]/ Cell">
<col/>
</xsl:for-each>


Best not to use descendant:: as its inefficient 9and wrong if there are
nested tables) I think probably it's



<xsl:for-each select="*/TableRow[not(Cell/@ColSpan)][1]/Cell"> <col/> </xsl:for-each>


where * will match TableHeader TableFooter or TableBody


David

________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs.
________________________________________________________________________

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.