ant-design/components/table/demo/row-selection.md

108 lines
2.3 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 2
2016-08-15 07:54:01 +08:00
title:
en-US: selection
zh-CN: 可选择
2016-03-31 09:40:55 +08:00
---
2015-07-10 17:47:53 +08:00
2016-08-15 08:07:03 +08:00
## zh-CN
2016-08-15 07:54:01 +08:00
第一列是联动的选择框。可以通过 `rowSelection.type` 属性指定选择类型,默认为 `checkbox`
2016-08-15 07:54:01 +08:00
> 默认点击 checkbox 触发选择行为,需要点击行触发可以参考例子:<https://codesandbox.io/s/000vqw38rl>
2018-01-15 17:24:40 +08:00
2016-08-15 08:07:03 +08:00
## en-US
2016-08-15 07:54:01 +08:00
Rows can be selectable by making first column as a selectable column. You can use `rowSelection.type` to set selection type. Default is `checkbox`.
2015-07-10 17:47:53 +08:00
> selection happens when clicking checkbox by default. You can see <https://codesandbox.io/s/000vqw38rl> if you need row-click selection behavior.
2018-01-15 17:24:40 +08:00
```tsx
2020-01-22 12:11:49 +08:00
import React, { useState } from 'react';
import { Table, Radio, Divider } from 'antd';
2019-05-07 14:57:32 +08:00
const columns = [
{
title: 'Name',
dataIndex: 'name',
render: text => <a>{text}</a>,
2019-05-07 14:57:32 +08:00
},
{
title: 'Age',
dataIndex: 'age',
},
{
title: 'Address',
dataIndex: 'address',
},
];
const data = [
{
key: '1',
name: 'John Brown',
age: 32,
address: 'New York No. 1 Lake Park',
},
{
key: '2',
name: 'Jim Green',
age: 42,
address: 'London No. 1 Lake Park',
},
{
key: '3',
name: 'Joe Black',
age: 32,
address: 'Sidney No. 1 Lake Park',
},
{
key: '4',
name: 'Disabled User',
age: 99,
address: 'Sidney No. 1 Lake Park',
},
];
2015-07-10 17:47:53 +08:00
// rowSelection object indicates the need for row selection
const rowSelection = {
2016-11-15 12:01:06 +08:00
onChange: (selectedRowKeys, selectedRows) => {
2016-03-02 21:56:48 +08:00
console.log(`selectedRowKeys: ${selectedRowKeys}`, 'selectedRows: ', selectedRows);
2016-01-01 20:08:30 +08:00
},
2016-12-03 17:50:41 +08:00
getCheckboxProps: record => ({
2017-10-09 13:23:20 +08:00
disabled: record.name === 'Disabled User', // Column configuration not to be checked
name: record.name,
2016-12-03 17:50:41 +08:00
}),
2015-07-10 17:47:53 +08:00
};
const Demo = () => {
2020-01-22 12:11:49 +08:00
const [selectionType, setSelectionType] = useState('checkbox');
return (
<div>
<Radio.Group
onChange={({ target: { value } }) => {
setSelectionType(value);
}}
value={selectionType}
>
<Radio value="checkbox">Checkbox</Radio>
<Radio value="radio">radio</Radio>
</Radio.Group>
<Divider />
<Table
rowSelection={{
type: selectionType,
...rowSelection,
}}
columns={columns}
dataSource={data}
/>
</div>
);
};
ReactDOM.render(<Demo />, mountNode);
2019-05-07 14:57:32 +08:00
```