You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is possible to crash tablesorter with c.parsers being undefined.
This occurs under the following circumstances:
//Table is created with zero rows.
$('#container').append('<table><thead><tr><th>ID</th><th>Name</th></tr></thead><tbody></tbody></table>');
//Table is set as a tablesorter, with minimal options.
$('#container table').tablesorter();
//Attempt to add rows...
$row=$('<tr><td>1</td><td>First row</td></tr>');
$('#container table tbody').append($row).trigger('addRows',[$row,true]);
This causes tablesorter to crash at line 719 with c.parsers undefined.
I have worked around this issue by populating at least the initial data prior to calling .tablesorter().
The text was updated successfully, but these errors were encountered:
Hi.
As originally reported here http://stackoverflow.com/questions/12335340/jquery-tablesorter-js-error-line-600
It is possible to crash tablesorter with c.parsers being undefined.
This occurs under the following circumstances:
This causes tablesorter to crash at line 719 with c.parsers undefined.
I have worked around this issue by populating at least the initial data prior to calling .tablesorter().
The text was updated successfully, but these errors were encountered: