Hello @chubukov
fixed_rows={'headers': True}
Will also cause issues with dropdowns that are inside of the table, if there arent enough rows to expand the full length of the dropdown.
What I do is have this inside of my “header.css” file in the assets folder and remove the fixed_rows prop:
#filters table tr th {
position: sticky;
top: -1px;
z-index: 900;
}
Where “filters” is the id of the table that I wanted to fix the headers. The z-index is so that you dont get an issue when scrolling down, you can adjust that to better fit your needs as well.