Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

thead filckering on Chrome #152

Open
rrd108 opened this issue Aug 20, 2018 · 0 comments
Open

thead filckering on Chrome #152

rrd108 opened this issue Aug 20, 2018 · 0 comments

Comments

@rrd108
Copy link

rrd108 commented Aug 20, 2018

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
});
WiRai pushed a commit to WiRai/StickyTableHeaders that referenced this issue Dec 10, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant