xsl-list
[Top] [All Lists]

Re: [xsl] Calcuting TH rows

2009-01-09 18:25:08


I need the <thead> to close AFTER the 
last <tr> (row) that contains <th> elements.

don't think of opening and closing tags, think of elements containing or
not containingg stuff.

reword the requirement to:

 I need the thead element to contain the result of processing rows that
have a th, and the remaining rows to be processed in tbody (or nothing,
I can't remeber quite how these tables worked). 

Once phrased that way, the translation to xslt is immediate:

<thead>
  <xsl:apply-templates select="tr[th]"/>
</thead>
<tbody>
  <xsl:apply-templates select="tr[not(th)]"/>
</tbody>


no xsl:if testing is required here, I think.

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. 
________________________________________________________________________

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>