vote up -1 vote down star

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

flag
Sorry, my html hasn't shown up properly. Is it possible to edit this post so I can change it? – Chuck Jul 1 at 9:23
done, there should be an edit link below the post. Maybe you need a certain amount of rep points to edit? – redsquare Jul 1 at 9:36
thank you redsquare – Chuck Jul 1 at 9:37
Two problems in your question /html statements. First, why a <tr> with id "VB" and another tr class "VB". The HTML looks clumsy and those <thead> declarations ain't really matching the rest of the table. Second, it doesn't really make sense that you cannot output what you want directly in HTML and relies on JQuery to fix it. Yes there should be ways to do so in JQ, but what's the reason to do it so indirectly? – xandy Jul 1 at 10:06
The only reason for the id's and classes is to help me identify which rows belong to which teams. The idea behind it is there will be a number of people in a given team. Each person will have their own row in the table. I was simply laying out the table to that you would get the team name on one line, then the following rows would be the team members. Sadly I am not able to set the rowspan during the html production, but I can easily redesign the html if there is a better way of presenting the data. – Chuck Jul 1 at 10:17

2 Answers

vote up 1 vote down

Before going down the client-side Javascript route, I'd be more inclined to try and get the Domino application to output something right in the first place. OK, so manipulating a view in the way you require is going to be tricky... why not look at generating the HTML using an agent instead?

In other words, have your link open an agent rather than a view, and code the agent to loop through the relevant data, performing rowspan calls where required.

Unless you're suddenly running Amazon on your Domino box, performance will be fine, even though you're triggering an agent with each page view.

link|flag
This is a good idea. You can do all sorts of things with agents. I used to use them heavily when I worked with Domino. – Chrisb Jul 21 at 13:48
vote up 0 vote down

You say that you can refactor the HTML, but you cannot set the rowspan attribute. I presume what you really mean is that you cannot calculate the value of the rowspan attribute. I will assume that you are free to set rowspan to something...

<table>
    <colgroup>
        <col class="team"/>
        <col class="desig"/>
        <col class="name"/>
    </colgroup>
    <thead>
        <tr>
            <th>Team</th>
            <th>Designation</th>
            <th>Name</th>
        </tr>
    </thead>
    <tbody id="ADM">
        <tr>
            <td rowspan="99999">ADM</td>
        </tr>
        <tr>
            <td>Partner</td>
            <td>Gus</td>
        </tr>
        <tr>
            <td>Solicitor</td>
            <td>Mark</td>
        </tr>
    </tbody>
    <tbody id="VB">
        <tr>
            <td rowspan="99999">VB</td>
        </tr>
        <tr>
            <td>Partner</td>
            <td>Vincent</td>
        </tr>
        <tr>
            <td>Solicitor</td>
            <td>Fiona</td>
        </tr>
    </tbody>
</table>

This layout groups each team into its own tbody. The rowspan attribute only applies to its current tbody, so we are free to make it ridiculously large without fear of spilling over into the next team's tbody.

Bonus: Because you encouraged refactoring...

I have also taken the liberty of moving the id attribute into the tbody element. This allows you to avoid the class="ADM" attributes on the td elements. I presume you did this to aid CSS selections. If you want to catch all rows in the "VB" group, you can now select it via:

#VB tr {
    background-color: green;
}

As well, by moving the class="team", class="desig" and class="name" into the colgroup at the top, your web browser should automatically apply that class to the cells immediately under them. For example, to select the designation cells within the "ADM" group, you could use this:

#ADM td.desig {
    background-color: red;
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.