tablesorter
tablesorter copied to clipboard
change HeaderSortUp & Down to glyphicon
How can i change the HeaderSortUp and HeaderSortDown to glyphicon of bootstrap..
You know how to use Icon Fonts? Then look at these lines to see the related styles as an example: https://github.com/christianbach/tablesorter/blob/master/themes/green/style.css#L32-L39
What I mean is the glyphicon class of bootstrap. "glyphicon glyphicon-chevron-up" and "glyphicon glyphicon-chevron-down"...
The documentation specifies that you can send in specified css classes for these symbols with the option params cssAsc
and cssDesc
.
var opts = {
cssAsc: 'glyphicon glyphicon-chevron-up',
cssDesc: 'glyphicon glyphicon-chevron-down'
};
$('#some-table').tablesorter(opts);
This might look a bit weird though, so you might perhaps want to change the method setHeadersCss
to suit your needs by appending and removing a span element with these classes.