I am new to DataTables, is there a way to remove the hand icon when hovering over a header? I have removed the sort feature from certain columns and don't want the hand icon to appear on a heading that does nothing when clicked on.
I am using DataTables 1.7.6, and do not see any hand icon when hovering on table header. But this is the jQuery selector I used to locate table header anyway.
It's just a CSS issue - for columns that aren't sortable they have the class 'sorting_disabled' - you can add a pointer: default; or whatever you want.
Replies
$(".dataTables_wrapper table:first-child > thead > tr" ).blah(...)
Allan