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 was archived by the owner on Jan 15, 2022. It is now read-only.
This renders my table with the appropriate data, but under an empty row. Seems as though adding my own Thead and Th elements causes an empty row and is completely ignored by Reactable. body_rows is an array of Tr elements but as soon as I try to be semantically correct and add a Tbody around it, no table is rendered. If the only children are Tr's things are fine but I want to be able to customize cell content. Some of my problems I think revolve around this.
I'll see if I can fix some things because I really like this library so far, but I at least wanted to document this as a ticket first.
Currently it seems as the Table only accepts
<Reactable.Td>elements.I am trying to customize the
<Reactable.Th>columns to have the labels, along with some "unsafe" html. Something like this:This renders my table with the appropriate data, but under an empty row. Seems as though adding my own
TheadandThelements causes an empty row and is completely ignored by Reactable.body_rowsis an array ofTrelements but as soon as I try to be semantically correct and add aTbodyaround it, no table is rendered. If the only children areTr's things are fine but I want to be able to customize cell content. Some of my problems I think revolve around this.I'll see if I can fix some things because I really like this library so far, but I at least wanted to document this as a ticket first.
Thanks for listening.