mirror of
https://github.com/Mottie/tablesorter.git
synced 2024-11-15 23:54:22 +00:00
Filter: parse non-filter type searches
This commit is contained in:
parent
29d7dd464c
commit
a0ad313508
@ -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) );
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user