Here is what I have and it is working:
$(document).ready(function() { $('.mytable').dataTable( { searching: true } ); $('.mytable').DataTable().column( 7 ).search('SearchText').draw(); } );
Now, I would like to hide the global search box, but keep the default search I am performing. Is there a way to do that?