Lines 58-64
var dataTablesDefaults = {
Link Here
|
58 |
// When the DataTables search function is triggered, |
58 |
// When the DataTables search function is triggered, |
59 |
// enable or disable the "Clear filter" button based on |
59 |
// enable or disable the "Clear filter" button based on |
60 |
// the presence of a search string |
60 |
// the presence of a search string |
61 |
$("#" + tableId ).on( 'search.dt', function ( e, settings ) { |
61 |
$(this).on( 'search.dt', function ( e, settings ) { |
62 |
toggledClearFilter(settings.oPreviousSearch.sSearch, tableId); |
62 |
toggledClearFilter(settings.oPreviousSearch.sSearch, tableId); |
63 |
}); |
63 |
}); |
64 |
} |
64 |
} |
65 |
- |
|
|