162

我正在使用 jQuery DataTables 插件对表格字段进行排序。我的问题是:如何禁用特定列的排序?我已经尝试使用以下代码,但它不起作用:

"aoColumns": [
  { "bSearchable": false },
  null
]   

我还尝试了以下代码:

"aoColumnDefs": [
  {
    "bSearchable": false,
    "aTargets": [ 1 ]
  }
]

但这仍然没有产生预期的结果。

4

23 回答 23

178

这就是你要找的:

$('#example').dataTable( {
      "aoColumnDefs": [
          { 'bSortable': false, 'aTargets': [ 1 ] }
       ]
});
于 2011-10-05T09:32:31.440 回答
93

从 DataTables 1.10.5 开始,现在可以使用 HTML5 data-* 属性定义初始化选项。

- 来自DataTables 示例 - HTML5 数据-* 属性 - 表格选项

因此,您可以data-orderable="false"th不想排序的列上使用。例如,下表中的第二列“头像”将不可排序:

<table id="example" class="display" width="100%" data-page-length="25">
    <thead>
        <tr>
            <th>Name</th>
            <th data-orderable="false">Avatar</th>
            <th>Start date</th>
            <th>Salary</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>Tiger Nixon</td>
            <td><img src="https://www.gravatar.com/avatar/8edcff60cdcca2ad650758fa524d4990?s=64&amp;d=identicon&amp;r=PG" alt="" style="width: 64px; height: 64px; visibility: visible;"></td>
            <td>2011/04/25</td>
            <td>$320,800</td>
        </tr>
        <tr>
            <td>Garrett Winters</td>
            <td><img src="https://www.gravatar.com/avatar/98fe9834dcca2ad650758fa524d4990?s=64&amp;d=identicon&amp;r=PG" alt="" style="width: 64px; height: 64px; visibility: visible;"></td>
            <td>2011/07/25</td>
            <td>$170,750</td>
        </tr>
        ...[ETC]...
    </tbody>
</table>

请参阅https://jsfiddle.net/jhfrench/6yxvxt7L/ 上的工作示例

于 2015-08-28T23:21:16.530 回答
64

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

于 2011-01-12T19:11:52.040 回答
61

使用 Datatables 1.9.4,我使用以下代码禁用了第一列的排序:

/* Table initialisation */
$(document).ready(function() {
    $('#rules').dataTable({
        "sDom" : "<'row'<'span6'l><'span6'f>r>t<'row'<'span6'i><'span6'p>>",
        "sPaginationType" : "bootstrap",
        "oLanguage" : {
            "sLengthMenu" : "_MENU_ records per page"
        },
        // Disable sorting on the first column
        "aoColumnDefs" : [ {
            'bSortable' : false,
            'aTargets' : [ 0 ]
        } ]
    });
});

编辑:

no-sort你甚至可以通过使用你的类来禁用<th>

并使用此初始化代码:

// Disable sorting on the no-sort class
"aoColumnDefs" : [ {
    "bSortable" : false,
    "aTargets" : [ "no-sort" ]
} ]

编辑 2

在这个例子中,我使用 Datables 和 Bootstrap,遵循一篇旧的博客文章。现在有一个链接,其中包含有关使用 bootstrap 设置 Datatables 样式的更新材料。

于 2013-06-13T10:16:11.610 回答
27

我使用的只是在 thead td 中添加一个自定义属性,并通过自动检查该 attr 值来控制排序。

所以HTML代码将是

<table class="datatables" cellspacing="0px" >

    <thead>
        <tr>
            <td data-bSortable="true">Requirements</td>
            <td>Test Cases</td>
            <td data-bSortable="true">Automated</td>
            <td>Created On</td>
            <td>Automated Status</td>
            <td>Tags</td>
            <td>Action</td>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>

用于初始化数据表的 JavaScript 将是(它将动态地从表本身获取排序信息;)

$('.datatables').each(function(){
    var bFilter = true;
    if($(this).hasClass('nofilter')){
        bFilter = false;
    }
    var columnSort = new Array; 
    $(this).find('thead tr td').each(function(){
        if($(this).attr('data-bSortable') == 'true') {
            columnSort.push({ "bSortable": true });
        } else {
            columnSort.push({ "bSortable": false });
        }
    });
    $(this).dataTable({
        "sPaginationType": "full_numbers",
        "bFilter": bFilter,
        "fnDrawCallback": function( oSettings ) {
        },
        "aoColumns": columnSort
    });
});
于 2013-03-06T09:49:09.403 回答
15

columnDefs现在接受一个类。如果您想在标记中指定要禁用的列,我会说这是首选方法:

<table>
    <thead>
        <tr>
            <th>ID</th>
            <th>Name</th>
            <th class="datatable-nosort">Actions</th>
        </tr>
    </thead>
    ...
</table>

然后,在你的 JS 中:

$("table").DataTable({
    columnDefs: [{
        targets: "datatable-nosort",
        orderable: false
    }]
});
于 2015-02-26T20:53:35.110 回答
11

您可以使用以下方法禁用要禁用的某些列:

 $('#tableId').dataTable({           
            "columns": [
                { "data": "id"},
                { "data": "sampleSortableColumn" },
                { "data": "otherSortableColumn" },
                { "data": "unsortableColumn", "orderable": false}
           ]
});

因此,您所要做的就是将 "orderable": false 添加到您不想排序的列中。

于 2014-12-09T15:53:21.820 回答
6
$("#example").dataTable(
  {
    "aoColumnDefs": [{
      "bSortable": false, 
      "aTargets": [0, 1, 2, 3, 4, 5]
    }]
  }
);
于 2013-11-28T05:32:16.893 回答
5

如果将 FIRST 列orderable属性设置为 false,则还必须设置默认order列,否则它将不起作用,因为第一列是默认排序列。下面的示例禁用对第一列的排序,但将第二列设置为默认顺序列(请记住 dataTables 的索引是从零开始的)。

$('#example').dataTable( {
  "order": [[1, 'asc']],
  "columnDefs": [
    { "orderable": false, "targets": 0 }
  ]
} );
于 2017-01-04T19:30:40.757 回答
5

对于单列排序禁用试试这个例子:

<script type="text/javascript">                         
    $(document).ready(function() 
    {
        $("#example").dataTable({
           "aoColumnDefs": [
              { 'bSortable': false, 'aTargets': [ 0 ] }
           ]
        });
    });                                         
</script>

对于多列,试试这个例子:你只需要添加列号。默认从 0 开始

<script type="text/javascript">                         
    $(document).ready(function() 
    {
        $("#example").dataTable({
           "aoColumnDefs": [
              { 'bSortable': false, 'aTargets': [ 0,1,2,4,5,6] }
           ]
        });
    });                                         
</script>  

仅在此处Column 3有效

于 2015-10-05T09:50:26.510 回答
5

1.10.5开始,只需包括

'可订购:假'

在 columnDefs 中并使用

'目标:[0,1]'

表应该像:

var table = $('#data-tables').DataTable({
    columnDefs: [{
        targets: [0],
        orderable: false
    }]
});
于 2015-10-21T15:39:11.563 回答
3
"aoColumnDefs" : [   
{
  'bSortable' : false,  
  'aTargets' : [ 0 ]
}]

0是列的索引,如果您不希望对多个列进行排序,请提及由分隔的列索引值comma(,)

于 2013-08-08T06:37:37.990 回答
3

更新 Bhavish 的答案(我认为这是针对旧版本的 DataTables 并且对我不起作用)。我认为他们更改了属性名称。尝试这个:

<thead>
    <tr>
        <td data-sortable="false">Requirements</td>
        <td data-sortable="false">Automated</td>
        <td>Created On</td>
    </tr>
</thead>
<tbody>
    <tr>
        <td>
于 2016-01-24T22:37:42.247 回答
2

使用类:

<table  class="table table-datatable table-bordered" id="tableID">
    <thead>
        <tr>
            <th class="nosort"><input type="checkbox" id="checkAllreInvitation" /></th>
            <th class="sort-alpha">Employee name</th>
            <th class="sort-alpha">Send Date</th>
            <th class="sort-alpha">Sender</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td><input type="checkbox" name="userUid[]" value="{user.uid}" id="checkAllreInvitation" class="checkItemre validate[required]" /></td>
            <td>Alexander Schwartz</td>
            <td>27.12.2015</td>
            <td>dummy@email.com</td>
        </tr>
    </tbody>
</table>
<script type="text/javascript">
    $(document).ready(function() {
        $('#tableID').DataTable({
            'iDisplayLength':100,
            "aaSorting": [[ 0, "asc" ]],
            'aoColumnDefs': [{
                'bSortable': false,
                'aTargets': ['nosort']
            }]
        });
    });
</script>

现在您可以将“nosort”类赋予 <TH>

于 2015-12-27T12:20:48.123 回答
2

这适用于我的单列

 $('#example').dataTable( {
"aoColumns": [
{ "bSortable": false 
 }]});
于 2016-04-01T10:15:41.913 回答
1

如果您已经必须隐藏某些列,例如我隐藏姓氏列。我只需要连接 fname , lname ,所以我进行了查询,但从前端隐藏了该列。在这种情况下禁用排序的修改是:

    "aoColumnDefs": [
        { 'bSortable': false, 'aTargets': [ 3 ] },
        {
            "targets": [ 4 ],
            "visible": false,
            "searchable": true
        }
    ],

请注意,我在这里有隐藏功能

    "columnDefs": [
            {
                "targets": [ 4 ],
                "visible": false,
                "searchable": true
            }
        ],

然后我将它合并到"aoColumnDefs"

于 2015-06-08T05:45:19.743 回答
1

有两种方式,一种是在html中定义表头的时候定义

<thead>
  <th data-orderable="false"></th>
</thead>

另一种方法是使用 javascript,例如,您有表

<table id="datatables">
    <thead>
        <tr>
            <th class="testid input">test id</th>
            <th class="testname input">test name</th>
    </thead>
</table>

然后,

$(document).ready(function() {
    $('#datatables').DataTable( {
        "columnDefs": [ {
            "targets": [ 0], // 0 indicates the first column you define in <thead>
            "searchable": false
        }
        , {
            // you can also use name to get the target column
            "targets": 'testid', // name is the class you define in <th>
            "searchable": false
        }
        ]
    }
    );
}
);
于 2018-11-27T14:21:27.880 回答
1
  1. 使用以下代码禁用第一列的排序:

    $('#example').dataTable( {
      "columnDefs": [
        { "orderable": false, "targets": 0 }
      ]
    } );
    
  2. 要禁用默认排序,您还可以使用:

    $('#example').dataTable( {
         "ordering": false, 
    } );
    
于 2017-04-12T17:27:34.190 回答
0

你也可以像这样使用负索引:

$('.datatable').dataTable({
    "sDom": "<'row-fluid'<'span6'l><'span6'f>r>t<'row-fluid'<'span6'i><'span6'p>>",
    "sPaginationType": "bootstrap",
    "aoColumnDefs": [
        { 'bSortable': false, 'aTargets': [ -1 ] }
    ]
});
于 2012-12-06T12:18:40.010 回答
0

代码将如下所示:

$(".data-cash").each(function (index) {
  $(this).dataTable({
    "sDom": "<'row-fluid'<'span6'l><'span6'f>r>t<'row-fluid'<'span6'i><'span6'p>>",
    "sPaginationType": "bootstrap",
    "oLanguage": {
      "sLengthMenu": "_MENU_ records per page",
      "oPaginate": {
        "sPrevious": "Prev",
        "sNext": "Next"
      }
    },
    "bSort": false,
    "aaSorting": []
  });
});
于 2015-06-22T08:42:18.707 回答
0

这是答案!

targets是列号,从0开始

$('#example').dataTable( {
  "columnDefs": [
    { "orderable": false, "targets": 0 }
  ]
} );
于 2016-01-17T21:48:14.733 回答
0

您可以直接在列上使用 .notsortable() 方法

 vm.dtOpt_product = DTOptionsBuilder.newOptions()
                .withOption('responsive', true)
        vm.dtOpt_product.withPaginationType('full_numbers');
        vm.dtOpt_product.withColumnFilter({
            aoColumns: [{
                    type: 'null'
                }, {
                    type: 'text',
                    bRegex: true,
                    bSmart: true
                }, {
                    type: 'text',
                    bRegex: true,
                    bSmart: true
                }, {
                    type: 'text',
                    bRegex: true,
                    bSmart: true
                }, {
                    type: 'select',
                    bRegex: false,
                    bSmart: true,
                    values: vm.dtProductTypes
                }]

        });

        vm.dtColDefs_product = [
            DTColumnDefBuilder.newColumnDef(0), DTColumnDefBuilder.newColumnDef(1),
            DTColumnDefBuilder.newColumnDef(2), DTColumnDefBuilder.newColumnDef(3).withClass('none'),
            DTColumnDefBuilder.newColumnDef(4), DTColumnDefBuilder.newColumnDef(5).notSortable()
        ];
于 2017-10-17T12:29:47.120 回答
-2

在表中设置类“no-sort”,然后添加 css .no-sort { pointer-events: none !important; 光标:默认!重要;背景图像:无!重要;这样,它会隐藏头部的向上箭头和禁用事件。

于 2016-04-06T11:29:00.277 回答