You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 15, 2022. It is now read-only.
I think there is another open issue about this, but the short answer is no. Here's a sort of hacky way that will accomplish it though - wrap your table in a div and give it this: onScroll={function(e) {let translate = translate(0,${e.nativeEvent.target.scrollTop}px); document.querySelector(".reactable-column-header" ).style.transform = translate;
this works for me but it creates the flickering effect in the header when hoever
table thead tr:nth-child(1) th{
background: white;
position: sticky;
top: 0;
z-index: 10;
}
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Adding postion:fixed to the header breaks the column layout. Is there any other way to make the headers fixed.
The text was updated successfully, but these errors were encountered: