admin管理员组文章数量:1339799
I'm currently using ReactJS + Material-UI, and with the Material-UI's <Table>
, the columns width are automatically set depending on content. Currently it seems to enforce equal width on all columns, but I want some columns to take up more width than others.
So is there a way to arbitrarily assign width of <TableRow>
's column and still be dynamic based on content instead?
I'm currently using ReactJS + Material-UI, and with the Material-UI's <Table>
, the columns width are automatically set depending on content. Currently it seems to enforce equal width on all columns, but I want some columns to take up more width than others.
So is there a way to arbitrarily assign width of <TableRow>
's column and still be dynamic based on content instead?
3 Answers
Reset to default 7You can set the style of the TableHeaderColumn and its corresponding TableRowColumns. Below I set width to 12 pixels (and background color to yellow just to further demo custom styling)
working jsFiddle: https://jsfiddle/0zh1yfqt/1/
const {
Table,
TableHeader,
TableHeaderColumn,
TableBody,
TableRow,
TableRowColumn,
MuiThemeProvider,
getMuiTheme,
} = MaterialUI;
class Example extends React.Component {
render() {
const customColumnStyle = { width: 12, backgroundColor: 'yellow' };
return (
<div>
<Table>
<TableHeader>
<TableRow>
<TableHeaderColumn>A</TableHeaderColumn>
<TableHeaderColumn style={customColumnStyle}>B</TableHeaderColumn>
<TableHeaderColumn>C</TableHeaderColumn>
</TableRow>
</TableHeader>
<TableBody>
<TableRow>
<TableRowColumn>1</TableRowColumn>
<TableRowColumn style={customColumnStyle}>2</TableRowColumn>
<TableRowColumn>3</TableRowColumn>
</TableRow>
<TableRow>
<TableRowColumn>4</TableRowColumn>
<TableRowColumn style={customColumnStyle}>5</TableRowColumn>
<TableRowColumn>6</TableRowColumn>
</TableRow>
<TableRow>
<TableRowColumn>7</TableRowColumn>
<TableRowColumn style={customColumnStyle}>8</TableRowColumn>
<TableRowColumn>9</TableRowColumn>
</TableRow>
</TableBody>
</Table>
</div>
);
}
}
const App = () => (
<MuiThemeProvider muiTheme={getMuiTheme()}>
<Example />
</MuiThemeProvider>
);
ReactDOM.render(
<App />,
document.getElementById('container')
);
There is a hidden prop in the <Table>
ponent that makes it behave like a HTML <table>
element, i.e. adapt the column widths to the content:
<Table style={{ tableLayout: 'auto' }} fixedHeader={false} ...>
...
</Table>
It doesn't let you style columns one by one, but at least it's less ugly than large columns for small contents by default.
according to the answer of @François Zaninotto @Lane Rettig
...
and adding with this ,you can get a scroll table with infinite columns...
ponentDidMount() {
let tbody = $(this.refs.table)
if (tbody && tbody.length == 1) {
let div = tbody[0].refs.tableDiv
div.style.overflowX = 'auto'
div.parentElement.style.overflowX = 'hidden'
} else {
// error handling
}
}
本文标签: javascriptReactJSMaterialUI How to reduce column width of MaterialUI39s ltTableRowgtStack Overflow
版权声明:本文标题:javascript - ReactJS + Material-UI: How to reduce column width of Material-UI's <TableRow>? - Stack Overfl 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743590070a2507015.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论