mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-26 22:31:46 +08:00

* docs: add general components TS demo * docs: add layout components TS demo * docs: add navigation components TS demo * docs: add data entry components TS demo * chore(deps): add types for qs * docs: add data display TS demo * docs: add feedback components TS demo * docs: add other components TS demo * chore(deps): add types * docs: unified demo code style * docs: fix lint error * docs: add demo TS type * docs: fix demo TS type * test: update snapshot * docs: fix TS demo * feat: update Rate character type * docs: fix lint error * feat: update Rate character type * feat: update Rate character type
59 lines
1.0 KiB
Markdown
59 lines
1.0 KiB
Markdown
---
|
|
order: 99
|
|
title:
|
|
en-US: Custom selection group
|
|
zh-CN: 自定义选择项组
|
|
debug: true
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
自定义选项分组。
|
|
|
|
## en-US
|
|
|
|
Customize selection group.
|
|
|
|
```tsx
|
|
import React from 'react';
|
|
import { Table } from 'antd';
|
|
import type { TableRowSelection } from 'antd/lib/table/interface';
|
|
import type { ColumnsType } from 'antd/lib/table';
|
|
|
|
interface DataType {
|
|
key: React.Key;
|
|
name: string;
|
|
}
|
|
|
|
const columns: ColumnsType<DataType> = [
|
|
{
|
|
title: 'Name',
|
|
dataIndex: 'name',
|
|
},
|
|
];
|
|
|
|
const data: DataType[] = [];
|
|
for (let i = 0; i < 46; i++) {
|
|
data.push({
|
|
key: i,
|
|
name: i % 2 === 0 ? `Edward King ${i}` : 'Another Row',
|
|
});
|
|
}
|
|
|
|
const App: React.FC = () => {
|
|
const rowSelection: TableRowSelection<DataType> = {
|
|
renderCell: (checked, _record, index, node) => ({
|
|
props: { rowSpan: index % 2 === 0 ? 2 : 0 },
|
|
children: (
|
|
<>
|
|
{String(checked)}: {node}
|
|
</>
|
|
),
|
|
}),
|
|
};
|
|
return <Table rowSelection={rowSelection} columns={columns} dataSource={data} />;
|
|
};
|
|
|
|
export default App;
|
|
```
|