ant-design/components/table/demo/expand.md

41 lines
1.2 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 12
2016-08-15 07:54:01 +08:00
title:
en-US: Expandable Row
zh-CN: 可展开
2016-03-31 09:40:55 +08:00
---
2015-09-10 11:04:31 +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
## en-US
2016-08-15 07:54:01 +08:00
2016-08-15 08:07:03 +08:00
When there's too much information to show and the table can't display all at once.
2015-09-10 11:04:31 +08:00
````jsx
import { Table } from 'antd';
2015-09-10 11:04:31 +08:00
const columns = [
{ title: '姓名', dataIndex: 'name', key: 'name' },
{ title: '年龄', dataIndex: 'age', key: 'age' },
{ title: '住址', dataIndex: 'address', key: 'address' },
2016-05-03 14:15:29 +08:00
{ title: '操作', dataIndex: '', key: 'x', render: () => <a href="#">删除</a> },
2015-09-10 11:04:31 +08:00
];
const data = [
{ key: 1, name: '胡彦斌', age: 32, address: '西湖区湖底公园1号', description: '我是胡彦斌今年32岁住在西湖区湖底公园1号。' },
{ key: 2, name: '吴彦祖', age: 42, address: '西湖区湖底公园2号', description: '我是吴彦祖今年42岁住在西湖区湖底公园2号。' },
2016-05-03 14:15:29 +08:00
{ key: 3, name: '李大嘴', age: 32, address: '西湖区湖底公园3号', description: '我是李大嘴今年32岁住在西湖区湖底公园3号。' },
2015-09-10 11:04:31 +08:00
];
2015-10-20 16:47:55 +08:00
ReactDOM.render(
<Table
columns={columns}
expandedRowRender={record => <p>{record.description}</p>}
dataSource={data}
className="table"
/>
, mountNode);
2015-09-10 11:04:31 +08:00
````