mirror of
https://github.com/Mottie/tablesorter.git
synced 2024-11-15 23:54:22 +00:00
No more fixedHeight pager error. Fixes #448
This commit is contained in:
parent
4aea98040c
commit
cbf501d46a
@ -825,7 +825,8 @@ ts.filter = {
|
||||
for (tbodyIndex = 0; tbodyIndex < $tbodies.length; tbodyIndex++ ) {
|
||||
if ($tbodies.eq(tbodyIndex).hasClass(ts.css.info)) { continue; } // ignore info blocks, issue #264
|
||||
$tbody = ts.processTbody(table, $tbodies.eq(tbodyIndex), true);
|
||||
$rows = $tbody.children('tr').not('.' + c.cssChildRow).not('.group-header');
|
||||
// skip child rows & widget added (removable) rows - fixes #448 thanks to @hempel!
|
||||
$rows = $tbody.children('tr').not('.' + c.cssChildRow).not(c.selectorRemove);
|
||||
len = $rows.length;
|
||||
if (combinedFilters === '' || wo.filter_serversideFiltering) {
|
||||
$tbody.children().show().removeClass(wo.filter_filteredRow);
|
||||
|
Loading…
Reference in New Issue
Block a user