mirror of
https://github.com/Mottie/tablesorter.git
synced 2024-11-15 23:54:22 +00:00
Filter widget: include tbody th's
This commit is contained in:
parent
116e46e9f0
commit
b0fdbef3c7
@ -902,7 +902,7 @@ ts.filter = {
|
||||
// checked here so the option can be changed dynamically
|
||||
childRowText = (childRow.length && wo.filter_childRows) ? childRow.text() : '';
|
||||
childRowText = wo.filter_ignoreCase ? childRowText.toLocaleLowerCase() : childRowText;
|
||||
$cells = $rows.eq(rowIndex).children('td');
|
||||
$cells = $rows.eq(rowIndex).children();
|
||||
|
||||
if (anyMatch) {
|
||||
rowArray = $cells.map(function(i){
|
||||
|
Loading…
Reference in New Issue
Block a user