I\'m using jQuery DataTables and I would like to know if there\'s possible to disable automatic sorting on the first column of the table?
My code looks like this:
this.dtOptions = { order: [], columnDefs: [ { 'targets': [0], /* column index [0,1,2,3]*/ 'orderable': false, /* true or false */ }], ........ rest all stuff ..... }
The above worked fine for me.
(I am using Angular version 7, angular-datatables version 6.0.0 and bootstrap version 4)