xsl-list
[Top] [All Lists]

[xsl] Group-By and nested tables

2006-12-05 16:35:21
Hi,
I'm just starting with XSL and I need some help with this transformation:

The XML data is quite simple:

<ROWS>
<ROW quarter="20" desc="azul"/>
<ROW quarter="21" desc="blanco"/>
<ROW quarter="21" desc="rojo"/>
<ROW quarter="22" desc="verde"/>
<ROW quarter="22" desc="blanco"/>
<ROW quarter="22" desc="rojo"/>
</ROWS>

I need to organize this data into a table, grouping it by quarter and then putting the detail into a nested table. Like this:

 Quarter 21
    Azul
 Quarter 22
    Blanco
    Rojo
 Quarter 23
    Verde
    Blanco
    Rojo

and the html result would be like this:

<table>
<tr>
 <td>20</td>
</tr>
<tr>
 <td>
     <table>
     <tr>
       <td>azul</td>
     <tr>
     </table>
 </td>
</tr>
<tr>
 <td>21</td>
</tr>
<tr>
 <td>
     <table>
     <tr>
       <td>blanco</td>
     <tr>
     <tr>
       <td>rojo</td>
     <tr>
     </table>
 </td>
</tr>
<tr>
 <td>22</td>
</tr>
<tr>
 <td>
     <table>
     <tr>
       <td>verde</td>
     <tr>
     <tr>
       <td>blanco</td>
     <tr>
     <tr>
       <td>rojo</td>
     <tr>
     </table>
 </td>
</tr>
</table>

Probably there is more than one way to achieve this, but anyone would be good.
Thanks in advance!

Ernesto.

_________________________________________________________________
MSN Hotmail : créez votre adresse e-mail gratuite & à vie ! http://www.msn.fr/newhotmail/Default.asp?Ath=f


--~------------------------------------------------------------------
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>
--~--