I'm having a problem with DataTables integrated in Bootstrap 3 and horizontal scrolling is enabled
Here is my fiddle
DataTables Initalization
/* Data Table Initialization */
var equipmentDataTable = $('#equipmentTable').dataTable({
"aoColumnDefs": [{ "sClass": "text-center", "aTargets": [ 0,25 ] },
{ 'bSortable': false, 'aTargets': [ 25 ] }],
"sScrollX": '100%'
});
I don't know why the header is not aligned with the body of the table. Thanks in advance