Disable sorting for a particular column in jQuery DataTables

This is what you’re looking for:

$('#example').dataTable( {
      "aoColumnDefs": [
          { 'bSortable': false, 'aTargets': [ 1 ] }
       ]
});

Leave a Comment