I noticed that after replacing the default DT style with Bootstrap styling dt-right
and dt-nowrap
no longer works.
Can't find any information that I should use Bootstrap specific commands for these options to work..
$(document).ready( function () {
var table = $('#example').DataTable({
"columnDefs": [
{ className: "dt-right", "targets": [3,5] },
{ className: "dt-nowrap", "targets": [0,1] }
]
});
} );