Is there a way to completely disable the sorting property in the dataTable API? I tried using bsort:false to disable sorting in all columns, which works fine, but the first column still displays the sort icon. Why is that?
$("#reportgrid").DataTable({
"order": [],
"bSort" : false,
"iDisplayLength": 10,
"sDom": '<"top">rt<"bottom"lp><"clear">',
});
The above code is what I am using for the dataTable.
https://i.sstatic.net/rWYvf.png
Here is a snapshot of my grid. Despite disabling sorting, the first column still has the CSS class of sorting_asc. So, how can I remove the sort icon from the first column?