Bootstrap:我有一个复选框列作为bootstrap网格中的第一列。我不需要对此列进行排序。如何仅禁用此列的排序?
答案 0 :(得分:1)
下面的代码适用于禁用列,方法是将orderable属性设置为false为必需列。 #example是网格视图ID。
$('#example').DataTable({
"columns": [{
"orderable": false
}, {
"orderable": true
}, {
"orderable": true
}, {
"orderable": true
}, {
"orderable": true
}, {
"orderable": true
}, {
"orderable": true
}]
});