[XSL-LIST Mailing List Archive Home]
[By Thread]
[By Date]
Re: [xsl] Newby Question...
Subject: Re: [xsl] Newby Question...
From: "cking" <cking@xxxxxxxxxx>
Date: Fri, 3 Sep 2004 11:03:41 +0200
|
Hi,
it would be much easier to help you if we could see
your XML input file and the XSL you have so far...
Maybe you could write a template for the table cells,
that only gets called on the first of a series,
and sets the colspan attribute something like:
<td colspan="{count(following-sibling::*[.=current()/.])+1}">
<xsl:value-of select="."/>
</td>
Best regards
Anton Triest
|