Just updated to the latest tablesorter and looks like its broken or something. Everytime i try to open my page, firebug says: table.config.parsers is undefined

and it just break the whole javascript. If i revert the tablesorter version, it will work fine Heres JS and HTML:

$("#List").tablesorter({ 
        widgets: ['zebra'],
        headers: { 
            4: { sorter: false }
        }
    });

<table id="List" class="tablesort ui-widget-content ui-corner-top">
            <thead>
                <tr class="ui-widget">
                    <th>Pa&iacute;s</th>
                    <th>ISO</th>
                    <th>ISO3</th>
                    <th>CODE</th>
                    <th>&nbsp;</th>
                </tr>
            </thead>
            <tbody>
            </tbody>
        </table>
link|improve this question
go through the documentation of latest version...may it's possible that some function signature has been changed...or there is some change in configuration – Vivek Dec 16 '10 at 11:21
just using basic stuff...they didnt changed the main tablesorter() function, im sure of it :P – alexandre Dec 16 '10 at 11:23
can we see your JavaScript and html? – Nalum Dec 16 '10 at 11:34
I've copied your code into this (jsfiddle.net/Nalum/TDr4A) and got no errors. Do you have any other javascript on the page? – Nalum Dec 16 '10 at 11:41
As i said, everything works fine on previous version, it just breaks when i use the latest one so i doubt my js have anything with this. – alexandre Dec 16 '10 at 11:53
show 4 more comments
feedback

2 Answers

I just encountered this error so I thought I'd post a response in case anyone else has trouble with it later.

Although the above answer doesn't mention it, I was able to replicate the error by first instantiating tablesorter() and then triggering a sort request.

This order of events would be necessary when appending or replacing existing table data with new data via AJAX or otherwise like so:

// populate our table body with rows
$("#myTable tbody").html(json.tbody);

// let the sorting plugin know that we made a update
$("#myTable").trigger("update");

// set sorting column and direction, this will sort on the first and third column
var sorting = [[2,1],[0,0]];

// sort
$("#myTable").trigger("sorton",[sorting]);

The combination of the "update" and the "sorton" event seems to be triggering the error. By the time the "sorton" event is handled the DOM hasn't been assigned the table.config.parsers - thus the error.

The fix is to wrap the "sorton" event handling in a 1 millisecond timeout.

Replace the existing "sorton" bind in jquery.tablesorter.js (line ~803) with the following:

}).bind("sorton", function (e, list) {
    var me = this;
    setTimeout(function () {
        $(this).trigger("sortStart");
        config.sortList = list;
        // update and store the sortlist
        var sortList = config.sortList;
        // update header count index
        updateHeaderSortCount(me, sortList);
        // set css for headers
        setHeadersCss(me, $headers, sortList, sortCSS);
        // sort the table and append it to the dom
        appendToTable(me, multisort(me, sortList, cache));
    }, 1);

tablesorter() is really a handy plugin. Thanks to Christian for releasing it.

link|improve this answer
feedback

Bit late but, it's because you have an empty/no TR in the TBODY, it expects at least one TR.

link|improve this answer
One way we managed to get around it is by starting off with a dummy <tr> regardless of whether the table has any data or not, and then hiding it via js on document load. – Val Redchenko Feb 8 at 19:44
feedback

Your Answer

 
or
required, but never shown

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