2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 3
|
2016-08-15 07:54:01 +08:00
|
|
|
title:
|
|
|
|
en-US: Checkbox props
|
|
|
|
zh-CN: 选择框属性
|
2016-03-31 09:40:55 +08:00
|
|
|
---
|
2015-10-09 17:14:09 +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
|
|
|
Set props to Checkbox or Radio.
|
2015-10-09 17:14:09 +08:00
|
|
|
|
|
|
|
````jsx
|
2015-10-28 20:55:49 +08:00
|
|
|
import { Table } from 'antd';
|
|
|
|
|
|
|
|
const columns = [{
|
2016-10-01 08:01:18 +08:00
|
|
|
title: 'Name',
|
2015-10-09 17:14:09 +08:00
|
|
|
dataIndex: 'name',
|
2016-03-10 16:55:02 +08:00
|
|
|
render: text => <a href="#">{text}</a>,
|
2015-10-09 17:14:09 +08:00
|
|
|
}, {
|
2016-10-01 08:01:18 +08:00
|
|
|
title: 'Age',
|
2016-05-03 14:15:29 +08:00
|
|
|
dataIndex: 'age',
|
2015-10-09 17:14:09 +08:00
|
|
|
}, {
|
2016-10-01 08:01:18 +08:00
|
|
|
title: 'Address',
|
2016-05-03 14:15:29 +08:00
|
|
|
dataIndex: 'address',
|
2015-10-09 17:14:09 +08:00
|
|
|
}];
|
2015-10-28 20:55:49 +08:00
|
|
|
const data = [{
|
2015-10-09 17:14:09 +08:00
|
|
|
key: '1',
|
2016-10-01 08:01:18 +08:00
|
|
|
name: 'John Brown',
|
2015-10-09 17:14:09 +08:00
|
|
|
age: 32,
|
2016-10-01 08:01:18 +08:00
|
|
|
address: 'New York No. 1 Lake Park',
|
2015-10-09 17:14:09 +08:00
|
|
|
}, {
|
|
|
|
key: '2',
|
2016-10-01 08:01:18 +08:00
|
|
|
name: 'Jim Green',
|
2015-10-09 17:14:09 +08:00
|
|
|
age: 42,
|
2016-10-01 08:01:18 +08:00
|
|
|
address: 'London No. 1 Lake Park',
|
2015-10-09 17:14:09 +08:00
|
|
|
}, {
|
|
|
|
key: '3',
|
2016-10-01 08:01:18 +08:00
|
|
|
name: 'Joe Black',
|
2015-10-09 17:14:09 +08:00
|
|
|
age: 32,
|
2016-10-01 08:01:18 +08:00
|
|
|
address: 'Sidney No. 1 Lake Park',
|
2015-10-09 17:14:09 +08:00
|
|
|
}];
|
|
|
|
|
2016-10-01 08:01:18 +08:00
|
|
|
// rowSelection object indicates the need for row selection
|
2015-10-28 20:55:49 +08:00
|
|
|
const rowSelection = {
|
2016-06-17 17:22:46 +08:00
|
|
|
getCheckboxProps: record => ({
|
2016-10-01 08:01:18 +08:00
|
|
|
disabled: record.name === 'Jim Green', // Column configuration not to be checked
|
2016-06-17 17:22:46 +08:00
|
|
|
}),
|
2015-10-09 17:14:09 +08:00
|
|
|
};
|
|
|
|
|
2015-10-20 16:47:55 +08:00
|
|
|
ReactDOM.render(<Table rowSelection={rowSelection} columns={columns} dataSource={data} />
|
2015-12-29 12:08:58 +08:00
|
|
|
, mountNode);
|
2015-10-09 17:14:09 +08:00
|
|
|
````
|