-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathstickyheader.jquery.js
68 lines (59 loc) · 2.66 KB
/
stickyheader.jquery.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
var initStickyHeaders = function () {
var tables = jQuery('table.stickyHeader');
tables.each(function(i){
var table = tables[i];
var tableClone = jQuery(table).clone(true).empty().removeClass('stickyHeader');
var theadClone = jQuery(table).find('thead').clone(true);
var stickyHeader = jQuery('<div></div>').addClass('stickyHeader hide').attr('aria-hidden', 'true');
stickyHeader.append(tableClone).find('table').append(theadClone);
jQuery(table).after(stickyHeader);
var tableHeight = jQuery(table).height();
var tableWidth = jQuery(table).width()
+ Number(jQuery(table).css('padding-left').replace(/px/ig, ""))
+ Number(jQuery(table).css('padding-right').replace(/px/ig, ""))
+ Number(jQuery(table).css('border-left-width').replace(/px/ig, ""))
+ Number(jQuery(table).css('border-right-width').replace(/px/ig, ""));
var headerCells = jQuery(table).find('thead th');
var headerCellHeight = jQuery(headerCells[0]).height();
var no_fixed_support = false;
if (stickyHeader.css('position') == "absolute") {
no_fixed_support = true;
}
var stickyHeaderCells = stickyHeader.find('th');
stickyHeader.css('width', tableWidth);
var cellWidths = [];
for (var i = 0, l = headerCells.length; i < l; i++) {
cellWidths[i] = jQuery(headerCells[i]).outerWidth(); //outerWidth also calculates border
}
for (var i = 0, l = headerCells.length; i < l; i++) {
jQuery(stickyHeaderCells[i]).css('width', cellWidths[i]);
}
var cutoffTop = jQuery(table).offset().top;
var cutoffBottom = tableHeight + cutoffTop - headerCellHeight;
jQuery(window).scroll(function() {
var currentPosition = jQuery(window).scrollTop();
if (currentPosition > cutoffTop && currentPosition < cutoffBottom) {
stickyHeader.removeClass('hide');
if (no_fixed_support) {
stickyHeader.css('top', currentPosition + 'px');
}
}
else {
stickyHeader.addClass('hide');
}
});
// init sticky headers again on resize
jQuery(window).on('resize', reInitStickyHeaders);
});
};
function reInitStickyHeaders() {
// remove old sticky header
jQuery('div.stickyHeader').remove();
// unbind scroll and resize handlers
jQuery(window).off('scroll');
jQuery(window).off('resize');
// run initStickyHeaders again
initStickyHeaders();
}
// init sticky headers on dom load
jQuery(document).ready(initStickyHeaders);