查看此页面,然后单击“表格”选项卡。
我正在尝试添加指示排序的三角形,如下所示(http://datatables.net/blog/Twitter_Bootstrap_2),但我无法弄清楚。实际的排序是有效的,而不是样式。
我怎样才能让它工作?
查看此页面,然后单击“表格”选项卡。
我正在尝试添加指示排序的三角形,如下所示(http://datatables.net/blog/Twitter_Bootstrap_2),但我无法弄清楚。实际的排序是有效的,而不是样式。
我怎样才能让它工作?
您的带有类的表头.tablesorter-header
缺少此 CSS(根据您的需要更改图像的 url):
table#national_universities_table thead tr .tablesorter-header {
background-image: url("images/bg.gif");
background-repeat: no-repeat;
background-position: right center;
cursor: pointer;
}
table#national_universities_table thead tr .tablesorter-headerAsc {
background-image: url("images/asc.gif");
}
table#national_universities_table thead tr .tablesorter-headerDesc {
background-image: url("images/desc.gif");
}