Filter: parse non-filter type searches

This commit is contained in:
Mottie 2014-07-16 17:30:02 -05:00
parent 29d7dd464c
commit a0ad313508

View File

@ -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) );
}
}