在 jquery 数据表中,我可以禁用特定列排序
"aoColumnDefs": [{
'bSortable': false,
'aTargets': [0, 7]
}]
任何人都知道如何在 Angular JS 中做到这一点?
<table class="custom-table" datatable="ng" dt-options="dtOptions" id="contacts-list-table">
</table>
myApp.controller("ListCtr", ['DTOptionsBuilder', function(DTOptionsBuilder) {
$scope.dtOptions = DTOptionsBuilder.newOptions().withDOM('C<"clear">lfrtip')
}])
此代码隐藏了我的搜索栏但无法隐藏我的第一列和第四列的排序功能?