|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: How do I count number of nodes?
alex chang wrote:
>
> How do I cound the total number of children (this will be my x) of the
> column-header element?
Check out the XPath function count(). I seem to remember you're using
IE5 MSXML1, so it may be called something else.
http://www.w3.org/TR/xpath#function-count
The following should do the trick.
<td valign="center" colspan="{count(*)}"> ... </td>
> Also, should I add the number of upper-left elements
> + the number of mh elements, or should I just take the total number of
> elements under column-header, regardless of who they are?
That depends what you want the output to look like. You
can count the two element types separately.
<td valign="center"
colspan="{count(upper-left) + count(mh)}"> ... </td>
--
Warren Hedley
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








