I have a table which is dynamically produced using a Lotus Domino view (not important), the strucutre of which looks something like this:
<table>
<thead>
<tr>
<th>Team</th>
<th>Designation</th>
<th>Name</th>
</tr>
</thead>
<tr id="ADM">
<td class="team">ADM</td>
</tr>
<tr class="ADM">
<td class="desig">Partner</td>
<td class="name">Gus</td>
</tr>
<tr class="ADM">
<td class="desig">Solicitor</td>
<td class="name">Mark</td>
</tr>
<tr id="VB">
<td class="team">VB</td>
</tr>
<tr class="VB">
<td class="desig">Partner</td>
<td class="name">Vincent</td>
</tr>
<tr class="VB">
<td class="desig">Solicitor</td>
<td class="name">Fiona</td>
</tr>
</table>
The idea is that this table could have any number of rows, with any number of "teams". You'll notice that When a new team starts, I've set the ID of the row to the team name and then all subsequent rows beneath that team have a class with the name of the team. I thought that would be a good way of identifying each row. If you can think of a better way, let me know :)
Anyway, what I want to do is set the rowspan of the team <td> so that it spans the number of rows which have the class of the same name.
So for example I'd like to set <td class="team">ADM</td> to <td rowspan="3" class="team">ADM</td> so that is spans that section nicely. I'd want to do this to the whole table.
Sadly I can't do this via the HTML production so I'd like to do it using jQuery, traversing each row, taking the ID and then counting the number of rows with a class of the same value, then setting the rowspan attribute of the relevant row to that value.
Hope that makes sense!
Thanks
