Merge pull request #548 from evanboho/patch-1

Fix table reset on pagination change
This commit is contained in:
Rob G 2014-03-18 17:37:51 -05:00
commit 7617ac1ac5

View File

@ -542,6 +542,7 @@
$.data(table, 'pagerLastPage', p.page);
$.data(table, 'pagerLastSize', p.size);
p.totalPages = Math.ceil( p.totalRows / p.size );
p.filteredPages = Math.ceil( p.filteredRows / p.size );
moveToPage(table, p);
},