vote up 1 vote down star
1

i took an html table that i am applying alternative row colors and i just added jquery table sorter on it so users can sort the table.

the issue is that the alternative row colors are all messed up now as (based on the sorting) there are multiple rows with the same backcolor . .

is there anyway to reset the alternative row color with jquery table sorter?

flag

I find the easiest way is to just scan through the table when finished sorting and alternate the classname for the proper L&F. – James Black Sep 18 at 0:31
i dont follow you here. it seems like jquery is doing all the sorting so where do you get a "hook" to go in and reset your table – oo Sep 18 at 0:33
Can i suggest another table component instead of jquery tablesorter ? – Arthur Ronald F D Garcia Sep 29 at 13:54

3 Answers

vote up 4 vote down check

There's already a default widget zebra, built into the core, which applies the classes odd and even to alternate rows. It works whether or not you have added class=even/odd to the html file.

It's really easy to set up. I simply followed the instructions on the table sorter website, and then modified the document ready function to the following:

<script type="text/javascript">
$(document).ready(function() 
    { 
        $("#myTable").tablesorter({ 
    widgets: ['zebra'] 
    }); 
    } 
); 
</script>

To prove that it's easy to set up, here's what I made while I was trying to answer your question. I've also zipped all the code into one file. I used the Blue Skin theme that you can download from the tablesorter website.

link|flag
vote up 2 vote down

Based on Anthony's answer, but rephrased as a one-liner (mostly):

function fixStripes() {
    $('table tr').removeClass('odd even')
        .filter(':even').addClass('even').end()
        .filter(':odd').addClass('odd');
}

$("table").bind("sort", fixStripes);

JQuery calls can be "chained" as above, using operations like filter() to limit the selected elements, and .end() to "reset" to the last selection. Put another way, each .end() "undoes" the previous .filter(). The final .end() is left off, since there's nothing to do after that.

link|flag
That should be $('table tr') – Anthony Sep 29 at 3:15
Quite right, thanks for the catch. – dcrosta Sep 29 at 3:16
vote up 1 vote down

How about:

function fixStripes() {
     var i = 0;
     var rowclass;
     $("table tr").each(function() {
          $(this).removeClass("odd even");
          rowclass = (i%2 == 1) ? "odd" : "even";
          $(this).addClass(rowClass);
      });
}

$("table").bind("sort", fixStripes);

Oh, and if you want a really simple fix, you could hold your breath for this CSS pseudo-class to get picked up by all the major browsers:

table tr:nth-child(n+1) {
    color: #ccc;
}

But my guess is based on how FF and company handle CSS for dynamic HTML, it would set your stripes onload, but not apply the CSS after you sort. But I'd like to know for sure.

link|flag
Think you also need $(this).removeClass('odd even') to make sure each row gets reset correctly. – dcrosta Sep 29 at 3:01
I just realized that! I'm back for edits. good lookin out. – Anthony Sep 29 at 3:06

Your Answer

Get an OpenID
or

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