Double Header Bug Fix (for Internet Explorer)
Double Header Bug Fix (for Internet Explorer)
jamieb22
Posts: 10Questions: 7Answers: 0
On some versions of IE, data tables (v1.10.1) is displaying a double header. A slight source code modification is required.
Line 3632, change:
headerCopy.find('th, td').removeAttr('tabindex');
to
headerCopy.find('th, td').removeAttr('tabindex').empty();
This discussion has been closed.