You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I believe that we should adjust the tablesorter.widgets.js file to check for a disabled header by doing: this.sortDisabled
For example:
$.each(c.headerList, function(i){
if (this.sortDisabled === true) {
// no sort arrows for disabled columns!
$(this).find('span.ui-widget-header').remove('.ui-icon');
The text was updated successfully, but these errors were encountered:
I believe that we should adjust the tablesorter.widgets.js file to check for a disabled header by doing:
this.sortDisabled
For example:
The text was updated successfully, but these errors were encountered: