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

51 lines
1003 B
Markdown
Raw Normal View History

2015-07-10 17:47:53 +08:00
# 选择
- order: 1
第一列是联动的选择框。
---
````jsx
var Table = antd.Table;
var columns = [{
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
}];
var data = [{
name: '胡彦斌',
age: 32,
address: '西湖区湖底公园1号'
}, {
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号'
}, {
name: '李大嘴',
age: 32,
address: '西湖区湖底公园1号'
}];
// 通过 rowSelection 对象表明需要行选择
2015-07-10 17:47:53 +08:00
var 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
}
};
React.render(<Table rowSelection={rowSelection} columns={columns} dataSource={data} />
2015-07-10 17:47:53 +08:00
, document.getElementById('components-table-demo-row-selection'));
````