StickyTableHeaders icon indicating copy to clipboard operation
StickyTableHeaders copied to clipboard

thead filckering on Chrome

Open rrd108 opened this issue 7 years ago • 0 comments

For version 0.1.24 when you have multiple tables with sticky headers and use fixedOffset the headers are flickering on scroll.

Solutin is found at #112

Change

base.$originalHeader.css({
    'position': 'fixed',
    'margin-top': base.options.marginTop,
    'left': newLeft,
    'z-index': 3 // #18: opacity bug
});

to this

base.$originalHeader.css({
    'position': 'fixed',
    'margin-top': base.options.marginTop,
    'top': base.options.fixedOffset,
    'left': newLeft,
    'z-index': 3 // #18: opacity bug
});

rrd108 avatar Aug 20 '18 13:08 rrd108