Search code examples
jquery-pluginsdatatables

How to remove sorting option from DataTables?


I'm using DataTables plugin. I don't want to use the sorting option (to sort the columns in ASC or DESC order) which comes by default on each <thead>. How can I remove that sorting icon?


Solution

  • Very similar to @ravisolanki07 , it's just a different way to achieve this.

    var oTable = $('#example').dataTable( {
        "aoColumnDefs": [
            { "bSortable": false, "aTargets": [ 0, 1, 2, 3 ] }, 
            { "bSearchable": false, "aTargets": [ 0, 1, 2, 3 ] }
        ]
    });