I am currently seeking a method to add an additional custom class to the jQuery datatables filters (Records per page and Search)
Th
This can also be easily done with jQuery using fnDrawCallback. Here I add two classes to style for Bootstrap
fnDrawCallback: function( oSettings ) { $('div#oTable_length select, div#oTable_filter input').addClass("form-control input-sm"); },