ant-design/components/table/demo/fixed-columns-header.md

63 lines
1.6 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 18
2016-08-15 07:54:01 +08:00
title:
en-US: Fixed Columns and Header
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
适合同时展示有大量数据和数据列。
2016-08-15 07:54:01 +08:00
2016-08-15 08:07:03 +08:00
> 若列头与内容不对齐,请指定每列宽度 `width`。
2016-08-15 07:54:01 +08:00
2016-08-15 08:07:03 +08:00
> 建议指定 scroll.x 为固定宽度。
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
2016-08-15 08:07:03 +08:00
Suitable for large amounts of data with long columns.
2016-08-15 08:07:03 +08:00
> Specify the width of each column if header and cell do not align properly.
2016-03-24 16:16:37 +08:00
2016-08-15 08:07:03 +08:00
> A fixed width for `scroll.x` is recommended.
2016-08-15 07:54:01 +08:00
2016-03-24 16:16:37 +08:00
````jsx
import { Table } from 'antd';
const columns = [
{ title: '姓名', width: 100, dataIndex: 'name', key: 'name', fixed: 'left' },
{ title: '年龄', width: 100, dataIndex: 'age', key: 'age', fixed: 'left' },
{ title: '列1', dataIndex: 'address', key: '1', width: 150 },
{ title: '列2', dataIndex: 'address', key: '2', width: 150 },
{ title: '列3', dataIndex: 'address', key: '3', width: 150 },
{ title: '列4', dataIndex: 'address', key: '4', width: 150 },
{ title: '列5', dataIndex: 'address', key: '5', width: 150 },
{ title: '列6', dataIndex: 'address', key: '6', width: 150 },
{ title: '列7', dataIndex: 'address', key: '7', width: 150 },
{ title: '列8', dataIndex: 'address', key: '8', width: 150 },
2016-03-24 16:16:37 +08:00
{
title: '操作',
key: 'operation',
fixed: 'right',
width: 100,
render: () => <a href="#">操作</a>,
},
];
const data = [];
for (let i = 0; i < 100; i++) {
data.push({
key: i,
name: `李大嘴${i}`,
age: 32,
2016-05-03 14:15:29 +08:00
address: `西湖区湖底公园${i}号`,
2016-03-24 16:16:37 +08:00
});
}
function App() {
return <Table columns={columns} dataSource={data} scroll={{ x: 1500, y: 300 }} />;
}
2016-03-24 16:16:37 +08:00
ReactDOM.render(<App />, mountNode);
````