what is your best recommendation for table sorting with jQuery

i have a very simple, manually updated table, 4 columns

Facility Name, Phone #, City, Specialty

i want the user to be able to sort by Facility name, and City only.

there are so many out there, with so many unnecessary bells and whistles...

your thought?

link|improve this question

58% accept rate
feedback

5 Answers

up vote 19 down vote accepted

If you want to avoid all the bells and whistles then may I suggest this simple sortElements plugin. Usage:

var table = $('table');

$(​'#facility_header, #city_header​')
    .wrapInner('<span title="sort this column"/>')
    .each(function(){

        var th = $(this),
            thIndex = th.index(),
            inverse = false;

        th.click(function(){

            table.find('td').filter(function(){

                return $(this).index() === thIndex;

            }).sortElements(function(a, b){

                return $.text([a]) > $.text([b]) ?
                    inverse ? -1 : 1
                    : inverse ? 1 : -1;

            }, function(){

                // parentNode is the element we want to move
                return this.parentNode; 

            });

            inverse = !inverse;

        });​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​

    });

And a demo. (click the "city" and "facility" column-headers to sort)

link|improve this answer
+1 for pointing to jsfiffle.net - great site! – nightcoder Feb 28 '11 at 18:04
The demo link doesn't seem to work in Firefox 5 or IE9(standard or compatibility mode) – rossisdead Jul 14 '11 at 23:25
1  
The demo was broken because the location of the plugin had changed. I have forked a fixed jsfiddle to demo sortElements which at least seems to work for me :) @999 perhaps you could update your answer to link to the fixed demo? – Jake Worrell Dec 5 '11 at 15:56
What if you have multiple tables on a page? I forked the jsfiddle jsfiddle.net/CM8bT – Marc Mar 23 at 2:29
feedback

By far, the easiest one I've used is: http://datatables.net/

Amazingly simple...just make sure if you go the DOM replacement route (IE, building a table and letting DataTables reformat it) then make sure to format your table with <thead> and <tbody> or it won't work. That's about the only gotcha.

There's also support for AJAX, etc. As with all really good pieces of code, it's also VERY easy to turn it all off. You'd be suprised what you might use, though. I started with a "bare" DataTable that only sorted one field and then realized that some of the features were really relevant to what I'm doing. Clients LOVE the new features.

Bonus points to DataTables for full ThemeRoller support....

I've also had ok luck with tablesorter, but it's not nearly as easy, not quite as well documented, and has only ok features.

link|improve this answer
2  
Agreed it is a nice feature rich plugin however possibly overkill in terms of complexity and size for what the OP requires. – redsquare Jul 1 '10 at 18:10
+1 for being available on NuGet: nuget.org/List/Packages/jquery.datatables – Frank van Eykelen Nov 24 '11 at 10:01
I agree too, datatables.net is the best table sorter/paginizer/searcher out there. Its rich features saved me a lot of time. I only regret the time I spent trying to integrate tablesorter2 plugin to my codes before finding out about datatables... – Logan Feb 1 at 17:22
feedback

My vote - TinyTable

link|improve this answer
3  
hard to choose TinyTable as there is no demo. – David Feb 3 '11 at 9:13
2  
@David - a 2 second google search gives you scriptiny.com/2009/03/table-sorter – redsquare Feb 3 '11 at 10:44
1  
TinyTable does not pass the modern standards of a library since the documentation is lacking. – Christopher Altman Jun 13 '11 at 15:37
@Christopher Altman the script is only 2.5kb - how many docs do you need! The OP was after a real simple light script which is what I gave.....not worth a downvote. Oh, what are these modern standards you speak of, can you send me a link:) – redsquare Jun 13 '11 at 16:16
feedback

Here's a chart that may be helpful deciding which to use: http://blog.sematext.com/2011/09/19/top-javascript-dynamic-table-libraries/

link|improve this answer
feedback

We just started using this slick tool: http://tablesorter.com/docs/

There is a video on its use at: http://www.highoncoding.com/Articles/695_Sorting_GridView_Using_JQuery_TableSorter_Plug_in.aspx

    $('#tableRoster').tablesorter({
        headers: {
            0: { sorter: false },
            4: { sorter: false }
        }
    });

With a simple table

<table id="tableRoster">
        <thead> 
                  <tr>
                    <th><input type="checkbox" class="rCheckBox" value="all" id="rAll" ></th>
                    <th>User</th>
                    <th>Verified</th>
                    <th>Recently Accessed</th>
                    <th>&nbsp;</th>
                  </tr>
        </thead>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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