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

74 lines
1.5 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 14
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
2019-05-07 14:57:32 +08:00
```jsx
import { Table } from 'antd';
2015-09-10 11:04:31 +08:00
const columns = [
{ title: 'Name', dataIndex: 'name', key: 'name' },
{ title: 'Age', dataIndex: 'age', key: 'age' },
{ title: 'Address', dataIndex: 'address', key: 'address' },
2018-11-28 15:00:03 +08:00
{
2019-05-07 14:57:32 +08:00
title: 'Action',
dataIndex: '',
key: 'x',
render: () => <a>Delete</a>,
2018-11-28 15:00:03 +08:00
},
2015-09-10 11:04:31 +08:00
];
const data = [
2018-11-28 15:00:03 +08:00
{
2019-05-07 14:57:32 +08:00
key: 1,
name: 'John Brown',
age: 32,
address: 'New York No. 1 Lake Park',
description: 'My name is John Brown, I am 32 years old, living in New York No. 1 Lake Park.',
2018-11-28 15:00:03 +08:00
},
{
2019-05-07 14:57:32 +08:00
key: 2,
name: 'Jim Green',
age: 42,
address: 'London No. 1 Lake Park',
description: 'My name is Jim Green, I am 42 years old, living in London No. 1 Lake Park.',
2018-11-28 15:00:03 +08:00
},
{
2019-05-07 14:57:32 +08:00
key: 3,
name: 'Not Expandable',
age: 29,
address: 'Jiangsu No. 1 Lake Park',
description: 'This not expandable',
},
{
key: 4,
2019-05-07 14:57:32 +08:00
name: 'Joe Black',
age: 32,
address: 'Sidney No. 1 Lake Park',
description: 'My name is Joe Black, I am 32 years old, living in Sidney No. 1 Lake Park.',
2018-11-28 15:00:03 +08:00
},
2015-09-10 11:04:31 +08:00
];
2015-10-20 16:47:55 +08:00
ReactDOM.render(
<Table
columns={columns}
expandable={{
expandedRowRender: record => <p style={{ margin: 0 }}>{record.description}</p>,
rowExpandable: record => record.name !== 'Not Expandable',
}}
dataSource={data}
2018-06-27 15:55:04 +08:00
/>,
2019-05-07 14:57:32 +08:00
mountNode,
2018-11-28 15:00:03 +08:00
);
2019-05-07 14:57:32 +08:00
```