2016-01-03 01:17:49 +08:00
|
|
|
# 选择框属性
|
2015-10-09 17:14:09 +08:00
|
|
|
|
2016-01-03 01:17:49 +08:00
|
|
|
- order: 3
|
2015-10-09 17:14:09 +08:00
|
|
|
|
|
|
|
配置选择框的默认属性。
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
````jsx
|
2015-10-28 20:55:49 +08:00
|
|
|
import { Table } from 'antd';
|
|
|
|
|
|
|
|
const columns = [{
|
2015-10-09 17:14:09 +08:00
|
|
|
title: '姓名',
|
|
|
|
dataIndex: 'name',
|
2016-02-17 15:57:33 +08:00
|
|
|
render(text) {
|
2015-11-25 17:35:49 +08:00
|
|
|
return <a href="#">{text}</a>;
|
2015-10-09 17:14:09 +08:00
|
|
|
}
|
|
|
|
}, {
|
|
|
|
title: '年龄',
|
|
|
|
dataIndex: 'age'
|
|
|
|
}, {
|
|
|
|
title: '住址',
|
|
|
|
dataIndex: 'address'
|
|
|
|
}];
|
2015-10-28 20:55:49 +08:00
|
|
|
const data = [{
|
2015-10-09 17:14:09 +08:00
|
|
|
key: '1',
|
|
|
|
name: '胡彦斌',
|
|
|
|
age: 32,
|
|
|
|
address: '西湖区湖底公园1号'
|
|
|
|
}, {
|
|
|
|
key: '2',
|
|
|
|
name: '胡彦祖',
|
|
|
|
age: 42,
|
|
|
|
address: '西湖区湖底公园1号'
|
|
|
|
}, {
|
|
|
|
key: '3',
|
|
|
|
name: '李大嘴',
|
|
|
|
age: 32,
|
|
|
|
address: '西湖区湖底公园1号'
|
|
|
|
}];
|
|
|
|
|
|
|
|
// 通过 rowSelection 对象表明需要行选择
|
2015-10-28 20:55:49 +08:00
|
|
|
const rowSelection = {
|
2016-02-17 15:57:33 +08:00
|
|
|
getCheckboxProps(record) {
|
2015-10-09 17:14:09 +08:00
|
|
|
return {
|
2015-11-04 17:22:05 +08:00
|
|
|
defaultChecked: record.name === '李大嘴', // 配置默认勾选的列
|
2015-10-10 11:35:31 +08:00
|
|
|
disabled: record.name === '胡彦祖' // 配置无法勾选的列
|
|
|
|
};
|
2015-10-09 17:14:09 +08:00
|
|
|
},
|
2016-01-01 20:08:30 +08:00
|
|
|
onChange(selectedRowKeys) {
|
2016-02-17 18:04:42 +08:00
|
|
|
console.log(`selectedRowKeys changed: ${selectedRowKeys}`);
|
2016-01-01 20:08:30 +08:00
|
|
|
},
|
2016-02-17 15:57:33 +08:00
|
|
|
onSelect(record, selected, selectedRows) {
|
2015-10-09 17:14:09 +08:00
|
|
|
console.log(record, selected, selectedRows);
|
|
|
|
},
|
2016-02-17 15:57:33 +08:00
|
|
|
onSelectAll(selected, selectedRows) {
|
2015-10-09 17:14:09 +08:00
|
|
|
console.log(selected, selectedRows);
|
2016-01-01 20:08:30 +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
|
|
|
````
|