Disable sorting for a particular column in jQuery DataTables

前端 未结 23 1573
礼貌的吻别
礼貌的吻别 2020-11-30 19:58

I am using the jQuery DataTables plugin to sort the table fields. My question is: how do I disable sorting for a particular column? I have tried with the following code, but

23条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-30 20:52

    To make a first column sorting disable, try with the below code in datatables jquery. The null represents the sorting enable here.

    $('#example').dataTable( {
      "aoColumns": [
      { "bSortable": false },
      null,
      null,
      null
      ]
    } );
    

    Disable Sorting on a Column in jQuery Datatables

提交回复
热议问题