mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-28 21:19:37 +08:00
2.2 KiB
2.2 KiB
order | title | ||||
---|---|---|---|---|---|
18 |
|
zh-CN
对于列数很多的数据,可以固定前后的列,横向滚动查看其它数据,需要和 scroll.x
配合使用。
若列头与内容不对齐,请指定列的宽度
width
。
建议指定
scroll.x
为大于表格宽度的固定值。注意,且非固定列宽度之和不要超过scroll.x
。
如果希望
scroll.x
为自适应内容宽度,可以指定scroll={{ x: true }}
。注意不要设置滚动区域单元格内容的宽度,并指定white-space: nowrap
样式强制其不自动换行。
en-US
To fix some columns and scroll inside other columns, and you must set scoll.x
meanwhile.
Specify the width of columns if header and cell do not align properly.
A fixed value which is greater than table width for
scroll.x
is recommended. The sum of unfixed columns should not greater thanscroll.x
.
If you hope the
scroll.x
will adapt content's witdh, you can setscroll={{ x: true }}
. Then use csswhite-space: nowrap
to make sure the content of table cell inside scrollable area will not be wrapped.
import { Table } from 'antd';
const columns = [
{ title: 'Full Name', width: 100, dataIndex: 'name', key: 'name', fixed: 'left' },
{ title: 'Age', width: 100, dataIndex: 'age', key: 'age', fixed: 'left' },
{ title: 'Column 1', dataIndex: 'address', key: '1' },
{ title: 'Column 2', dataIndex: 'address', key: '2' },
{ title: 'Column 3', dataIndex: 'address', key: '3' },
{ title: 'Column 4', dataIndex: 'address', key: '4' },
{ title: 'Column 5', dataIndex: 'address', key: '5' },
{ title: 'Column 6', dataIndex: 'address', key: '6' },
{ title: 'Column 7', dataIndex: 'address', key: '7' },
{ title: 'Column 8', dataIndex: 'address', key: '8' },
{
title: 'Action',
key: 'operation',
fixed: 'right',
width: 100,
render: () => <a href="#">action</a>,
},
];
const data = [{
key: '1',
name: 'John Brown',
age: 32,
address: 'New York Park',
}, {
key: '2',
name: 'Jim Green',
age: 40,
address: 'London Park',
}];
ReactDOM.render(<Table columns={columns} dataSource={data} scroll={{ x: 1300 }} />, mountNode);