2016-03-31 09:40:55 +08:00
---
2016-11-22 10:11:12 +08:00
order: 18
2016-08-15 07:54:01 +08:00
title:
en-US: Fixed Columns
zh-CN: 固定列
2016-03-31 09:40:55 +08:00
---
2016-03-24 16:16:37 +08:00
2016-08-15 08:07:03 +08:00
## zh-CN
2016-08-15 07:54:01 +08:00
2016-08-15 08:07:03 +08:00
对于列数很多的数据,可以固定前后的列,横向滚动查看其它数据,需要和 `scroll.x` 配合使用。
2016-08-15 07:54:01 +08:00
2017-02-18 16:49:34 +08:00
> 若列头与内容不对齐,请指定列的宽度 `width`。
2016-08-15 07:54:01 +08:00
2017-02-18 16:49:34 +08:00
> 建议指定 `scroll.x` 为固定宽度。注意,非固定列宽度之和不要超过 `scroll.x`。
2017-02-20 17:58:51 +08:00
> 如果希望 `scroll.x` 为自适应内容宽度,可以指定 `scroll={{ x: true }}`,然后设置单元格内容的 `white-space: nowrap` 样式强制不自动换行。
2016-03-24 16:16:37 +08:00
2016-08-15 08:07:03 +08:00
## en-US
2016-08-15 07:54:01 +08:00
2017-02-18 16:49:34 +08:00
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.
2016-06-02 17:35:25 +08:00
2017-02-18 16:49:34 +08:00
> A fixed width for `scroll.x` is recommended. The sum of unfixed columns should not greater than `scroll.x`.
2016-03-24 16:16:37 +08:00
2017-02-18 16:49:34 +08:00
> If you hope the `scroll.x` will adapt content's witdh, you can set `scroll={{ x: true }}` ant then use css `white-space: nowrap` to make sure table cell will not be wrapped.
2016-08-15 07:54:01 +08:00
2017-02-13 10:55:53 +08:00
````jsx
2016-03-24 16:16:37 +08:00
import { Table } from 'antd';
const columns = [
2016-10-02 08:32:27 +08:00
{ 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' },
2016-03-24 16:16:37 +08:00
{
2016-10-02 08:32:27 +08:00
title: 'Action',
2016-03-24 16:16:37 +08:00
key: 'operation',
fixed: 'right',
width: 100,
2016-10-02 08:32:27 +08:00
render: () => < a href = "#" > action< / a > ,
2016-03-24 16:16:37 +08:00
},
];
const data = [{
key: '1',
2016-10-02 08:32:27 +08:00
name: 'John Brown',
2016-03-24 16:16:37 +08:00
age: 32,
2016-10-02 08:55:40 +08:00
address: 'New York Park',
2016-03-24 16:16:37 +08:00
}, {
key: '2',
2016-10-02 08:32:27 +08:00
name: 'Jim Green',
2016-06-02 17:35:25 +08:00
age: 40,
2016-10-02 08:55:40 +08:00
address: 'London Park',
2016-03-24 16:16:37 +08:00
}];
2016-11-15 12:01:06 +08:00
ReactDOM.render(< Table columns = {columns} dataSource = {data} scroll = {{ x: 1300 } } / > , mountNode);
2016-03-24 16:16:37 +08:00
````