We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In this issue shows an example of how to use the RectList in table rendering (#47)
In the current implementation does not take into account the height of the <thead> tag that is not included in the items array
<thead>
Real container height:
Сalculated container height
The text was updated successfully, but these errors were encountered:
ping
Sorry, something went wrong.
@Zveroboev have find a way to fix this ? I met the same question
@aih8 no :(
Found a way to fix it -- as long as the header's height is constant.
Just add margin-bottom: ?px; to the styling of the root div element that ReactList's render function generates.
margin-bottom: ?px;
div
I currently do this by using a css selector as follows:
.parent-containing-react-list > div:nth-child(INDEX_OF_REACT_LIST_CHILD) { margin-bottom: ?px; }
No branches or pull requests
In this issue shows an example of how to use the RectList in table rendering (#47)
In the current implementation does not take into account the height of the
<thead>
tag that is not included in the items arrayReal container height:
Сalculated container height
The text was updated successfully, but these errors were encountered: