mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
6ba42db314
* support customize selection cell * update snapshot * update docs * fix lint * to debug
806 B
806 B
order | title | debug | ||||
---|---|---|---|---|---|---|
99 |
|
true |
zh-CN
自定义选项分组。
en-US
Customize selection group.
import { Table } from 'antd';
const columns = [
{
title: 'Name',
dataIndex: 'name',
},
];
const data = [];
for (let i = 0; i < 46; i++) {
data.push({
key: i,
name: i % 2 === 0 ? `Edward King ${i}` : 'Another Row',
});
}
const App = () => {
const rowSelection = {
renderCell: (checked, record, index, node) => ({
props: { rowSpan: index % 2 === 0 ? 2 : 0 },
children: (
<>
{String(checked)}: {node}
</>
),
}),
};
return <Table rowSelection={rowSelection} columns={columns} dataSource={data} />;
};
ReactDOM.render(<App />, mountNode);