$(document).ready( function () {
var oTable = $('#example').dataTable( {
"sScrollY": "300px",
"sScrollX": "100%",
"sScrollXInner": "150%",
"bScrollCollapse": true,
"bPaginate": false
} );
new $.fn.dataTable.FixedColumns( oTable );
} );
这不起作用
答案 0 :(得分:0)
您的问题不明确,但如果您想停止对数据表中第一列的排序,请使用aoColumns
关键字。
像这样的东西
$('#example').dataTable( {
"aoColumns": [
{ "bSortable": false },
null,
null,
null
]
} );