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
the table.js bodyTable: { height: this.props.fixedHeader || this.props.fixedFooter ? this.props.height : 'auto', overflowX: 'hidden', overflowY: 'auto' }, How can we change overflowX ?
The text was updated successfully, but these errors were encountered:
May be It does support change the table overflowX.
Sorry, something went wrong.
now workaround way: componentDidMount() { $('.mui-body-table').css('overflow-x', 'auto'); }
It doesn't look like there's a way to override it in the code: https://github.com/callemall/material-ui/blob/master/src/table/table.jsx#L90
But I'll try your workaround. Thanks
I got it by passing to Table component via props:
bodyStyle: { overflowX: undefined, overflowY: undefined }
But it disable the fixedHeader :(
removed outdated docs (mui#1838)
d9b58b4
No branches or pull requests
the table.js
bodyTable: {
height: this.props.fixedHeader || this.props.fixedFooter ? this.props.height : 'auto',
overflowX: 'hidden',
overflowY: 'auto'
},
How can we change overflowX ?
The text was updated successfully, but these errors were encountered: