如何将Fontello中的图标添加到数据表排序?

时间:2016-03-30 21:21:54

标签: datatables fontello

我在我的网络应用程序中使用Fontello和jQuery DataTables。如何使用Fontello中的向上和向下箭头表示表头单元格中的asc / desc排序顺序?

1 个答案:

答案 0 :(得分:0)

我使用jQuery和特定于dataTable的drawCallback函数来做到这一点:

drawCallback: function( settings ) {
        $(".dataTable thead tr th span.icon-up-open").remove();
        $(".dataTable thead tr th span.icon-down-open").remove();
        $(".dataTable thead tr th.sorting_desc").append("<span class='pull-right icon-up-open'></span");
        $(".dataTable thead tr th.sorting_asc").append("<span class='pull-right icon-down-open'></span");
    }