Bootstrap:如何在Bootstrap网格视图中仅禁用一列的排序

时间:2016-10-05 09:04:58

标签: twitter-bootstrap

Bootstrap:我有一个复选框列作为bootstrap网格中的第一列。我不需要对此列进行排序。如何仅禁用此列的排序?

1 个答案:

答案 0 :(得分:1)

下面的代码适用于禁用列,方法是将orderable属性设置为false为必需列。 #example是网格视图ID。

  $('#example').DataTable({
        "columns": [{
            "orderable": false
        }, {
            "orderable": true
        }, {
            "orderable": true
        }, {
            "orderable": true
        }, {
            "orderable": true
        }, {
            "orderable": true
        }, {
            "orderable": true
        }]
    });