Filter: select source now uses config.textAttribute when gathering text. Fixes #812

This commit is contained in:
Mottie 2015-02-06 16:32:12 -06:00
parent 485b515066
commit df87314007

View File

@ -1499,7 +1499,7 @@ ts.filter = {
} else {
cell = row.cells[column];
if (cell) {
arry.push( $.trim( cell.textContent || cell.innerText || $(cell).text() ) );
arry.push( $.trim( cell.getAttribute( c.textAttribute ) || cell.textContent || $(cell).text() ) );
}
}
}