Want to align center just the first column called \"Status\":
$(\"#TransactionTable\").DataTable({ ajax: { url: \'/Transactio
You can use your theme classes (bootstrap), or your own in columndef. like
text-right, text-left,text-center
'columnDefs': [ { "targets": 0, // your case first column "className": "text-center", "width": "4%" }, { "targets": 2, "className": "text-right", }],