-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
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
[Table] minimum width for "TableRowColumn" #4247
Labels
component: table
This is the name of the generic UI component, not the React module!
new feature
New feature or request
Comments
@francescabarbazeni87 could you figure out any solution around that? |
oliviertassinari
added
the
component: table
This is the name of the generic UI component, not the React module!
label
Dec 18, 2016
oliviertassinari
added
good first issue
Great for first contributions. Enable to learn the contribution process.
v1
labels
Jul 28, 2017
You could work around it using custom styles: //...
const styles = {
longCell: {
minWidth: '1000px',
},
tableWrapper: {
overflowX: 'auto',
},
};
const LongTable = ({classes}) => (
<div className={classes.tableWrapper}>
<Table>
<TableHead>
<TableRow>
<TableCell>ID</TableCell>
<TableCell className={classes.longCell}>Long Cell</TableCell>
</TableRow>
</TableHead>
</Table>
</div>
);
//... |
Why not TableCell can not add |
oliviertassinari
removed
v1.x
good first issue
Great for first contributions. Enable to learn the contribution process.
labels
Dec 7, 2017
@AndriusBil Thanks for sharing a solution. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
component: table
This is the name of the generic UI component, not the React module!
new feature
New feature or request
Description
It could be usefull to set the minimum width for a table row column.
In this way when we have a large number of columns the table could automatically show the horizontal overflow.
The text was updated successfully, but these errors were encountered: