Fixed: corrects floating headers upon filtering values

svn path=/Website/trunk/; revision=31937
This commit is contained in:
2016-12-12 15:27:04 +00:00
parent b2533278f1
commit 6d4325b5b3
2 changed files with 4 additions and 1 deletions

View File

@@ -33,7 +33,9 @@ function doFilter(deze)
var text = $(this).text().toLowerCase();
var moretext = ($(this).find("span.rsTruncmore").attr('resttxt')||"").toLowerCase();
$(this).toggle(text.indexOf(valThis) > -1 || moretext.indexOf(valThis) > -1);
});
});
if (typeof updateTableHeaders == 'function')
updateTableHeaders();
}
if (window.$)