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
Consider removing hidden columns from the column width calculation. I did this by modifying the following function in jquery.tablesorter.js:
functionfixColumnWidth(table){if(table.config.widthFixed&&$(table).find('colgroup').length===0){varcolgroup=$('<colgroup>'),overallWidth=$(table).width();/* removed hidden elements from the code that determines the width of columns. added 'remove(":hidden")' below */$(table.tBodies[0]).find("tr:first").children("td").remove(":hidden").each(function(){colgroup.append($('<col>').css('width',parseInt(($(this).width()/overallWidth)*1000,10)/10+'%'));});$(table).prepend(colgroup);}}
The text was updated successfully, but these errors were encountered:
Good point. I've been busy working other areas of the tablesorter and the filter plugin to also support this with ajax loads, as the code above only works with static versions.
Consider removing hidden columns from the column width calculation. I did this by modifying the following function in jquery.tablesorter.js:
The text was updated successfully, but these errors were encountered: