From 51ecf97c844d363a699da0798b1d49cc2fb9213f Mon Sep 17 00:00:00 2001 From: Mottie Date: Sun, 8 Dec 2013 22:19:08 -0600 Subject: [PATCH] Fix childRow filtering --- js/jquery.tablesorter.widgets.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/jquery.tablesorter.widgets.js b/js/jquery.tablesorter.widgets.js index b68b84d4..5b8675cb 100644 --- a/js/jquery.tablesorter.widgets.js +++ b/js/jquery.tablesorter.widgets.js @@ -927,7 +927,7 @@ ts.filter = { $rows[rowIndex].style.display = (showRow ? '' : 'none'); $rows.eq(rowIndex)[showRow ? 'removeClass' : 'addClass'](wo.filter_filteredRow); if (childRow.length) { - if (c.pager && c.pager.countChildRows || wo.pager_countChildRows) { + if (c.pager && c.pager.countChildRows || wo.pager_countChildRows || wo.filter_childRows) { childRow[showRow ? 'removeClass' : 'addClass'](wo.filter_filteredRow); // see issue #396 } childRow.toggle(showRow);