From a0ad3135080063eae3aab884c23ae96e938cd2ff Mon Sep 17 00:00:00 2001 From: Mottie Date: Wed, 16 Jul 2014 17:30:02 -0500 Subject: [PATCH] Filter: parse non-filter type searches --- 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 b00050a2..c66fc9d1 100644 --- a/js/jquery.tablesorter.widgets.js +++ b/js/jquery.tablesorter.widgets.js @@ -1113,7 +1113,7 @@ ts.filter = { result = filterMatched; // Look for match, and add child row data for matching } else { - exact = (iExact + childRowText).indexOf(iFilter); + exact = (iExact + childRowText).indexOf( ts.filter.parseFilter(table, iFilter, columnIndex, parsed[columnIndex]) ); result = ( (!wo.filter_startsWith && exact >= 0) || (wo.filter_startsWith && exact === 0) ); } }