Skip to content
Snippets Groups Projects
Commit d5823e86 authored by Gábor Hojtsy's avatar Gábor Hojtsy
Browse files

#211404 by dvessel: improve tableheader.js performance in all browsers, solves freeze in IE7

parent c3dccba2
No related branches found
No related tags found
Loading
...@@ -23,7 +23,6 @@ Drupal.behaviors.tableHeader = function (context) { ...@@ -23,7 +23,6 @@ Drupal.behaviors.tableHeader = function (context) {
var table = $(this).parent('table')[0]; var table = $(this).parent('table')[0];
headerClone.table = table; headerClone.table = table;
// Finish initialzing header positioning. // Finish initialzing header positioning.
headerClone.resizeWidths = true;
tracker(headerClone); tracker(headerClone);
$(table).addClass('sticky-table'); $(table).addClass('sticky-table');
...@@ -34,36 +33,29 @@ Drupal.behaviors.tableHeader = function (context) { ...@@ -34,36 +33,29 @@ Drupal.behaviors.tableHeader = function (context) {
function tracker(e) { function tracker(e) {
// Save positioning data. // Save positioning data.
var viewHeight = document.documentElement.scrollHeight || document.body.scrollHeight; var viewHeight = document.documentElement.scrollHeight || document.body.scrollHeight;
if (e.viewHeight != viewHeight || e.resizeWidths) { if (e.viewHeight != viewHeight) {
e.viewHeight = viewHeight; e.viewHeight = viewHeight;
e.vPosition = $(e.table).offset().top; e.vPosition = $(e.table).offset().top - 4;
e.hPosition = $(e.table).offset().left; e.hPosition = $(e.table).offset().left;
e.vLength = $(e.table).height(); e.vLength = e.table.clientHeight - 100;
e.resizeWidths = true; // Resize header and its cell widths.
var parentCell = $('th', e.table);
$('th', e).each(function(index) {
var cellWidth = parentCell.eq(index).css('width');
// Exception for IE7.
if (cellWidth == 'auto') {
var cellWidth = parentCell.get(index).clientWidth +'px';
}
$(this).css('width', cellWidth);
});
$(e).css('width', $(e.table).css('width'));
} }
// Track horizontal positioning relative to the viewport and set visibility. // Track horizontal positioning relative to the viewport and set visibility.
var hScroll = document.documentElement.scrollLeft || document.body.scrollLeft; var hScroll = document.documentElement.scrollLeft || document.body.scrollLeft;
var vScroll = document.documentElement.scrollTop || document.body.scrollTop; var vOffset = (document.documentElement.scrollTop || document.body.scrollTop) - e.vPosition;
var vOffset = vScroll - e.vPosition - 4; var visState = (vOffset > 0 && vOffset < e.vLength) ? 'visible' : 'hidden';
var visState = (vOffset > 0 && vOffset < e.vLength - 100) ? 'visible' : 'hidden';
$(e).css({left: -hScroll + e.hPosition +'px', visibility: visState}); $(e).css({left: -hScroll + e.hPosition +'px', visibility: visState});
// Resize cell widths.
if (e.resizeWidths) {
var cellCount = 0;
$('th', e).each(function() {
var cellWidth = parseInt($('th', e.table).eq(cellCount).css('width'));
// Exception for IE7.
if (!cellWidth) {
var cellWidth = $('th', e.table).eq(cellCount).width();
}
cellCount++;
$(this).css('width', cellWidth +'px');
});
$(e).css('width', $(e.table).width() +'px');
e.resizeWidths = false;
}
}; };
// Track scrolling. // Track scrolling.
...@@ -84,7 +76,8 @@ Drupal.behaviors.tableHeader = function (context) { ...@@ -84,7 +76,8 @@ Drupal.behaviors.tableHeader = function (context) {
} }
time = setTimeout(function () { time = setTimeout(function () {
$(headers).each(function () { $(headers).each(function () {
this.resizeWidths = true; // Force cell width calculation.
this.viewHeight = 0;
tracker(this); tracker(this);
}); });
// Reset timer // Reset timer
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment