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

55 lines
1.0 KiB
Markdown
Raw Normal View History

2015-07-10 17:47:53 +08:00
# 选择
- order: 1
第一列是联动的选择框。
---
````jsx
import { Table } from 'antd';
const columns = [{
2015-07-10 17:47:53 +08:00
title: '姓名',
2015-07-15 10:47:47 +08:00
dataIndex: 'name',
render: function(text) {
2015-07-16 18:26:17 +08:00
return <a href="javascript:;">{text}</a>;
2015-07-15 10:47:47 +08:00
}
2015-07-10 17:47:53 +08:00
}, {
title: '年龄',
dataIndex: 'age'
}, {
title: '住址',
2015-07-15 10:47:47 +08:00
dataIndex: 'address'
2015-07-10 17:47:53 +08:00
}];
const data = [{
2015-08-28 15:22:09 +08:00
key: '1',
2015-07-10 17:47:53 +08:00
name: '胡彦斌',
age: 32,
address: '西湖区湖底公园1号'
}, {
2015-08-28 15:22:09 +08:00
key: '2',
2015-07-10 17:47:53 +08:00
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号'
}, {
2015-08-28 15:22:09 +08:00
key: '3',
2015-07-10 17:47:53 +08:00
name: '李大嘴',
age: 32,
address: '西湖区湖底公园1号'
}];
// 通过 rowSelection 对象表明需要行选择
const rowSelection = {
2015-07-15 20:22:56 +08:00
onSelect: function(record, selected, selectedRows) {
console.log(record, selected, selectedRows);
2015-07-10 17:47:53 +08:00
},
2015-07-15 20:22:56 +08:00
onSelectAll: function(selected, selectedRows) {
console.log(selected, selectedRows);
2015-07-10 17:47:53 +08:00
}
};
2015-10-20 16:47:55 +08:00
ReactDOM.render(<Table rowSelection={rowSelection} columns={columns} dataSource={data} />
2015-07-10 17:47:53 +08:00
, document.getElementById('components-table-demo-row-selection'));
````