-
Notifications
You must be signed in to change notification settings - Fork 782
New issue
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
scroll bars #254
Comments
@jmc420, thanks this issue report, it's a enhancement got height of table, however, I've planed to design the new DOM structure of |
I know you are busy but do you have a rough timeline you will try new DOM structure? Currently trying to stack two tables in any react parents is quite broken so I look forward to it. I tried many other react tables & grids and they were all very disappointing compared to yours |
@DexterHaslem, sorry for a long time to wait, I've solve all the issues about unalign and table in tabs problem. Currently, I'm test the capability on different browser currently, I am sure it will be released in these day. sorry |
This solved it for me .react-bs-table-container { .react-bs-container-body { |
Hi
I noticed an issue with the scroll bars.
The markup generated by react-bootstrap-table looks like this:
the css rule table-container has overflow:auto which should switch on the scroll bars when the table overflows.
However this does not work because there is no height defined for react-bs-container:
http://stackoverflow.com/questions/17295219/overflow-scroll-css-is-not-working-in-the-div
The scroll bar does appear if one defines a css rule for react-bs-container like this:
.react-bs-container {
height:100%;
}
However the height of the scroll bar is wrong because table-container has a height of 100% - if it is reduced to 90% then it is about correct.
Can you add a height to react-bs-container and adjust the height of table-container?
James
The text was updated successfully, but these errors were encountered: