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.
the addition of the filter block tr class=reactable-filterer within the thead block (and before the actual row headers as provided to the component) is overriding any css/inline styling of the column widths. Also, the html standard colgroup settings before the thead cannot be used because they are rejected, with the message "The only possible children of Table are Thead, Tr, or one Tfoot".
This causes a secondary issue with column sorting - as the columns default to dynamic widths according to the data they contain, when changing the sort order the table columns can resize - meaning both the headings and the column data can 'jump' left and right.
Whereas as soon as the filter tr is removed, the table column widths observe their sizing via styling correctly, and sorting does not cause the table to jump.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
the addition of the filter block tr class=reactable-filterer within the thead block (and before the actual row headers as provided to the component) is overriding any css/inline styling of the column widths. Also, the html standard colgroup settings before the thead cannot be used because they are rejected, with the message "The only possible children of Table are Thead, Tr, or one Tfoot".
This causes a secondary issue with column sorting - as the columns default to dynamic widths according to the data they contain, when changing the sort order the table columns can resize - meaning both the headings and the column data can 'jump' left and right.
Whereas as soon as the filter tr is removed, the table column widths observe their sizing via styling correctly, and sorting does not cause the table to jump.
The text was updated successfully, but these errors were encountered: