jquery排序多列 - 数据表

时间:2015-11-27 11:06:44

标签: jquery datatables

我有一个数据表并且有10列。我需要排序三列2,3和4.第四列有两个 h:outputText ,一个 - 订单号。和其他是约会。我需要按顺序排序。为第4列。我怎么能这样做?我添加了以下代码,但它没有正确排序。

$('[id$=example]').dataTable({
        "bJQueryUI" : true,
        "iDisplayLength" : 10,
        "bAutoWidth" : false,
        "bRetrieve" : true,
        "bDestroy" : true,
        "aaSorting" : [],
        "bLengthChange": false,
        "aoColumnDefs": [
      { "bSortable": false, "aTargets": [ 0,1,5,6,7,8,9 ] }
   ]
});

感谢。

1 个答案:

答案 0 :(得分:1)

试试这个

$('[id$=example]').dataTable({

                "order": [
                    [2, 'desc']
                ],
});