jQuery Datatable排序不适用于html元素

时间:2019-04-05 03:27:30

标签: javascript jquery datatables

排序不适用于表格单元格中的html元素。

尝试将aoColumnDefs添加到其中。还要使用'sType': 'html'为列指定列数据,排序似乎无效。

附加的示例代码here(jsfiddle)

1 个答案:

答案 0 :(得分:0)

我在某些项目上遇到过这个问题,请使用mRender()而不是fnCreatedCell()render函数会收到一个type作为第二个参数,您可以从中检测'display'还是'sort'的渲染。因此,如果类型为'display',则可以返回HTML,否则返回原始数据。

var data = [
  ["test", [20.2, "green"], "test"],
  ['test1', ['10.2', 'red'], "test"],
  ['test2', ['15.2', 'red'], "test"],
  ['test3', ['0', 'red'], "test"],
  ['test4', ['0.5', 'green'], "test"],
  ['test5', ['1.5', 'green'], "test"],
];  

$(document).ready(function()
{
    $('#data2').DataTable(
    {
      bSort: true,
      aaData: data,
      aaSorting: [[1, 'asc']],
      aoColumnDefs: [
        { 
          bSortable: true,
          sType: "numeric", 
          aTargets: [1],
          mRender: function(data, type)
          {
            if (type !== 'display')
              return data[0];

            return '<label style="color:' + data[1] + '">' + data[0] + '</label>';
          },
        }
      ]
    });    
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src=https://cdn.datatables.net/1.9.4/js/jquery.dataTables.min.js></script>
<link rel="stylesheet" href="https://cdn.datatables.net/1.9.4/css/jquery.dataTables.css">

<table id="data2" class="">
  <thead>
  <tr>
    <th>col1</th>
    <th>col2</th>
    <th>col3</th>
  </tr>
  </thead>
</table>