Want to align center just the first column called \"Status\":
$(\"#TransactionTable\").DataTable({ ajax: { url: \'/Transactio
You can style that manually
$("select_your_table").DataTable({ .... columns: [ { mData: "select_property_from_json", render: function (data) { return 'data'; } }, ], .... });