Answers for "data table multiple column filter"

0

data table multiple column filter

$('.dataTables_filter input').unbind().bind('keyup', function() {
  var colIndex = document.querySelector('#select').selectedIndex;
  table.column( colIndex).search( this.value ).draw();
});
Posted by: Guest on April-04-2022

Code answers related to "data table multiple column filter"

Browse Popular Code Answers by Language