JQuery Datatable:如何禁用特定的排序

前端之家收集整理的这篇文章主要介绍了JQuery Datatable:如何禁用特定的排序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想禁用对我表的第一行的排序,该行看起来像
<tr class="no-sort">
<td colspan="4"></td>
<td></td>
<td></td>
<td></td>
</tr>

解决方法

不要将此行添加到dipslayed数据中.

代码添加到fnDrawCallback中以在thead或tbody的开头添加一行:

var opts = {};

opts.fnDrawCallback = function(){
    var mySpecialRow = '<tr><td>First</td><td>Second</td></tr>';

    $('#mytable thead').append(mySpecialRow);
    // or
    $('#mytable tbody').prepend(mySpecialRow);
}
$('#mytable').dataTable(opts);

也许我错过了一些细节:

var $tr = $('#mytable tr.no-sort');
var mySpecialRow = $tr.html();
$tr.remove();

var opts = {};
opts.fnDrawCallback = function(){
    $('#mytable thead').append(mySpecialRow);
    // or
    $('#mytable tbody').prepend(mySpecialRow);
};

// add any other option you want
opts.sPaginationType = "full_numbers";

$('#mytable').dataTable(opts);
原文链接:https://www.f2er.com/jquery/177246.html

猜你在找的jQuery相关文章