michaelctorres / clients-oriented-ftp

Automatically exported from code.google.com/p/clients-oriented-ftp
0 stars 0 forks source link

Tablesorter broken in IE11 #427

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
check this page: http://tablesorter.com/docs/example-pager.html

no data is displayed in IE11 (running IE11 on Windows 7 professional), that 
means also no data is displayed on all ProjectSend pages that use the plug-in. 

quite crucial because that means that more or less the whole application is 
broken on IE 11.

the plug-in is working on IE 10 and 9.

Original issue reported on code.google.com by philipp....@gmail.com on 15 Jan 2014 at 11:09

GoogleCodeExporter commented 8 years ago
If you're in a crunch and you have to get the tables displaying again, you can 
open up the "jquery.tablesorter.min.js" file in includes/js. Search for the 
following string (the file is minified, so the whole thing should be on one 
line):

this.clearTableBody=function(table){if($.browser.msie){function 
empty(){while(this.firstChild)this.removeChild(this.firstChild);}empty.apply(tab
le.tBodies[0]);}else{table.tBodies[0].innerHTML="";}};

replace it with this one:

this.clearTableBody=function(table){function 
empty(){while(this.firstChild)this.removeChild(this.firstChild);}empty.apply(tab
le.tBodies[0]);};

Reference this page for more information (and perhaps a simpler version to 
replace with if you dare!):

http://stackoverflow.com/questions/19504252/jquery-tablesorter-pager-plugin-does
nt-work-properly-with-ie11-in-edge-mode

Original comment by stud...@comicnet.net on 24 Jan 2014 at 5:04

GoogleCodeExporter commented 8 years ago
Fixed, thanks for the info studean!

Original comment by i...@subwaydesign.com.ar on 24 Jan 2014 at 10:54

GoogleCodeExporter commented 8 years ago
you da mon stud...@comicnet.net!!!!!!!!!!! thanks

Original comment by volzda...@gmail.com on 16 Jun 2014 at 9:30