Update dataTables.searchHighlight.js

Added ability to handle search terms set via option.
pull/121/head
keeger 11 years ago
parent ab4deee531
commit e938161f8b

@ -41,20 +41,30 @@ $(document).on( 'init.dt.dth', function (e, settings, json) {
var table = new $.fn.dataTable.Api( settings );
var body = $( table.table().body() );
var highlightWords = function() {
// On each draw highlight search results, removing the old ones
body.unhighlight();
// Don't highlight the "not found" row
if ( table.rows( { filter: 'applied' } ).data().length ) {
body.highlight( table.search().split(" ") );
}
};
if (
$( table.table().node() ).hasClass( 'searchHighlight' ) || // table has class
settings.oInit.searchHighlight || // option specified
$.fn.dataTable.defaults.searchHighlight // default set
) {
// if the search option is set to a filter, the draw event below does not fire.
// so on init, if there is a search term, highlight.
if (table.search()) {
highlightWords();
}
table
.on( 'draw.dt.dth column-visibility.dt.dth', function () {
// On each draw highlight search results, removing the old ones
body.unhighlight();
// Don't highlight the "not found" row
if ( table.rows( { filter: 'applied' } ).data().length ) {
body.highlight( table.search().split(" ") );
}
highlightWords();
} )
.on( 'destroy', function () {
// Remove event handler

Loading…
Cancel
Save