ant-design/components/table/demo/dynamic-settings.md

205 lines
5.5 KiB
Markdown
Raw Normal View History

---
2018-07-24 17:41:01 +08:00
order: 27
title:
en-US: Dynamic Settings
zh-CN: 动态控制表格属性
---
## zh-CN
选择不同配置组合查看效果。
## en-US
Select different settings to see the result.
2019-05-07 14:57:32 +08:00
```jsx
import { Table, Icon, Switch, Radio, Form, Divider } from 'antd';
2018-06-27 15:55:04 +08:00
const FormItem = Form.Item;
2019-05-07 14:57:32 +08:00
const columns = [
{
title: 'Name',
dataIndex: 'name',
key: 'name',
width: 150,
render: text => <a href="javascript:;">{text}</a>,
},
{
title: 'Age',
dataIndex: 'age',
key: 'age',
width: 70,
},
{
title: 'Address',
dataIndex: 'address',
key: 'address',
},
{
title: 'Action',
key: 'action',
width: 360,
render: (text, record) => (
<span>
<a href="javascript:;">Action 一 {record.name}</a>
<Divider type="vertical" />
<a href="javascript:;">Delete</a>
<Divider type="vertical" />
<a href="javascript:;" className="ant-dropdown-link">
More actions <Icon type="down" />
</a>
</span>
),
},
];
const data = [];
for (let i = 1; i <= 10; i++) {
data.push({
key: i,
name: 'John Brown',
age: `${i}2`,
address: `New York No. ${i} Lake Park`,
description: `My name is John Brown, I am ${i}2 years old, living in New York No. ${i} Lake Park.`,
});
}
const expandedRowRender = record => <p>{record.description}</p>;
const title = () => 'Here is title';
2016-12-27 17:47:27 +08:00
const showHeader = true;
const footer = () => 'Here is footer';
const scroll = { y: 240 };
2018-03-15 14:26:28 +08:00
const pagination = { position: 'bottom' };
class Demo extends React.Component {
state = {
2016-11-14 14:26:08 +08:00
bordered: false,
2016-11-03 10:27:34 +08:00
loading: false,
2018-03-02 14:12:30 +08:00
pagination,
2016-11-03 10:27:34 +08:00
size: 'default',
expandedRowRender,
2018-03-15 14:26:28 +08:00
title: undefined,
2016-12-27 17:47:27 +08:00
showHeader,
footer,
rowSelection: {},
scroll: undefined,
2018-09-17 14:36:26 +08:00
hasData: true,
2019-05-07 14:57:32 +08:00
};
2019-05-07 14:57:32 +08:00
handleToggle = prop => enable => {
2018-11-28 15:00:03 +08:00
this.setState({ [prop]: enable });
2019-05-07 14:57:32 +08:00
};
2019-05-07 14:57:32 +08:00
handleSizeChange = e => {
2016-11-03 10:27:34 +08:00
this.setState({ size: e.target.value });
2019-05-07 14:57:32 +08:00
};
2019-05-07 14:57:32 +08:00
handleExpandChange = enable => {
this.setState({ expandedRowRender: enable ? expandedRowRender : undefined });
2019-05-07 14:57:32 +08:00
};
2019-05-07 14:57:32 +08:00
handleTitleChange = enable => {
2016-11-03 10:27:34 +08:00
this.setState({ title: enable ? title : undefined });
2019-05-07 14:57:32 +08:00
};
2019-05-07 14:57:32 +08:00
handleHeaderChange = enable => {
2016-12-27 17:47:27 +08:00
this.setState({ showHeader: enable ? showHeader : false });
2019-05-07 14:57:32 +08:00
};
2016-12-27 17:47:27 +08:00
2019-05-07 14:57:32 +08:00
handleFooterChange = enable => {
2016-11-03 10:27:34 +08:00
this.setState({ footer: enable ? footer : undefined });
2019-05-07 14:57:32 +08:00
};
2019-05-07 14:57:32 +08:00
handleRowSelectionChange = enable => {
this.setState({ rowSelection: enable ? {} : undefined });
2019-05-07 14:57:32 +08:00
};
2019-05-07 14:57:32 +08:00
handleScollChange = enable => {
this.setState({ scroll: enable ? scroll : undefined });
2019-05-07 14:57:32 +08:00
};
2019-05-07 14:57:32 +08:00
handleDataChange = hasData => {
2018-09-17 14:36:26 +08:00
this.setState({ hasData });
2019-05-07 14:57:32 +08:00
};
2018-09-17 14:36:26 +08:00
2019-05-07 14:57:32 +08:00
handlePaginationChange = e => {
2018-03-15 14:26:28 +08:00
const { value } = e.target;
this.setState({
pagination: value === 'none' ? false : { position: value },
});
2019-05-07 14:57:32 +08:00
};
render() {
2019-06-19 19:09:08 +08:00
const { state } = this;
return (
<div>
<div className="components-table-demo-control-bar">
<Form layout="inline">
2016-11-03 10:27:34 +08:00
<FormItem label="Bordered">
<Switch checked={state.bordered} onChange={this.handleToggle('bordered')} />
</FormItem>
2016-11-03 10:27:34 +08:00
<FormItem label="loading">
<Switch checked={state.loading} onChange={this.handleToggle('loading')} />
</FormItem>
2016-11-03 10:27:34 +08:00
<FormItem label="Title">
<Switch checked={!!state.title} onChange={this.handleTitleChange} />
</FormItem>
2016-12-27 17:47:27 +08:00
<FormItem label="Column Header">
<Switch checked={!!state.showHeader} onChange={this.handleHeaderChange} />
</FormItem>
2016-11-03 10:27:34 +08:00
<FormItem label="Footer">
<Switch checked={!!state.footer} onChange={this.handleFooterChange} />
</FormItem>
2016-11-03 10:27:34 +08:00
<FormItem label="Expandable">
<Switch checked={!!state.expandedRowRender} onChange={this.handleExpandChange} />
</FormItem>
<FormItem label="Checkbox">
<Switch checked={!!state.rowSelection} onChange={this.handleRowSelectionChange} />
</FormItem>
<FormItem label="Fixed Header">
<Switch checked={!!state.scroll} onChange={this.handleScollChange} />
</FormItem>
2018-09-17 14:36:26 +08:00
<FormItem label="Has Data">
<Switch checked={!!state.hasData} onChange={this.handleDataChange} />
</FormItem>
2016-11-03 10:27:34 +08:00
<FormItem label="Size">
2016-11-14 14:26:08 +08:00
<Radio.Group size="default" value={state.size} onChange={this.handleSizeChange}>
2016-11-03 10:27:34 +08:00
<Radio.Button value="default">Default</Radio.Button>
<Radio.Button value="middle">Middle</Radio.Button>
<Radio.Button value="small">Small</Radio.Button>
</Radio.Group>
</FormItem>
2018-03-15 14:26:28 +08:00
<FormItem label="Pagination">
<Radio.Group
value={state.pagination ? state.pagination.position : 'none'}
onChange={this.handlePaginationChange}
>
<Radio.Button value="top">Top</Radio.Button>
<Radio.Button value="bottom">Bottom</Radio.Button>
<Radio.Button value="both">Both</Radio.Button>
<Radio.Button value="none">None</Radio.Button>
</Radio.Group>
</FormItem>
</Form>
</div>
2018-09-17 14:36:26 +08:00
<Table {...this.state} columns={columns} dataSource={state.hasData ? data : null} />
</div>
);
}
}
ReactDOM.render(<Demo />, mountNode);
2019-05-07 14:57:32 +08:00
```
<style>
.components-table-demo-control-bar {
margin-bottom: 10px;
}
2016-11-03 10:27:34 +08:00
.components-table-demo-control-bar .ant-form-item {
margin-right: 16px;
margin-bottom: 8px;
}
</style>