我在我的网络应用程序中使用Fontello和jQuery DataTables。如何使用Fontello中的向上和向下箭头表示表头单元格中的asc / desc排序顺序?
答案 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");
}