如何使用jquery来阻塞第一列

时间:2015-03-13 11:40:06

标签: php

$(document).ready( function () {
    var oTable = $('#example').dataTable( {
        "sScrollY": "300px",
        "sScrollX": "100%",
    "sScrollXInner": "150%",
        "bScrollCollapse": true,
        "bPaginate": false
    } );

    new $.fn.dataTable.FixedColumns( oTable );
} );

这不起作用

1 个答案:

答案 0 :(得分:0)

您的问题不明确,但如果您想停止对数据表中第一列的排序,请使用aoColumns关键字。 像这样的东西

$('#example').dataTable( {
  "aoColumns": [
  { "bSortable": false },
  null,
  null,
  null
  ]
} );