pager ajax should no longer initialize twice. Fixes issue #202

This commit is contained in:
Mottie 2012-12-20 13:36:22 -06:00
parent 58ee7c1b65
commit 87e66fba6a
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
/*!
* tablesorter pager plugin
* updated 12/19/2012
* updated 12/20/2012
*/
/*jshint browser:true, jquery:true, unused:false */
;(function($) {
@ -536,7 +536,7 @@
//When filtering with ajax, allow only custom filtering function, disable default filtering since it will be done server side.
tc.widgetOptions.filter_serversideFiltering = true;
tc.serverSideSorting = true;
getAjax(table, c);
moveToPage(table, c);
} else {
c.ajax = false;
// Regular pager; all rows stored in memory

File diff suppressed because one or more lines are too long