Want to align center just the first column called \"Status\":
$(\"#TransactionTable\").DataTable({ ajax: { url: \'/Transactio
Also, you can group the columns to apply one style to many like so:
columnDefs: [ { className: 'text-right', targets: [7, 10, 11, 14, 16] }, { className: 'text-center', targets: [5] }, ], ...