I am trying to remove the header/footer balk of this table
Picture of what I am trying to remove:
Try the below! Hope that helps!
$(document).ready(function() {
var oTable = $('#tableSmooth').dataTable({
"bFilter" : false, //Disable search function
"bJQueryUI" : true, //Enable smooth theme
"sPaginationType" : "full_numbers", //Enable smooth theme
"bFilter" : false,
"bInfo" : false
});
});
oTable = $('#datatable').dataTable({
bJQueryUI: true,
bFilter: false,
bInfo: false,
bPaginate: false,
sDom: 't'
});
This will remove search bar, pagination, header and footer.