--- order: 99 title: en-US: Custom selection group zh-CN: 自定义选择项组 debug: true --- ## zh-CN 自定义选项分组。 ## en-US Customize selection group. ```tsx import { Table } from 'antd'; import type { ColumnsType } from 'antd/lib/table'; import type { TableRowSelection } from 'antd/lib/table/interface'; import React from 'react'; interface DataType { key: React.Key; name: string; } const columns: ColumnsType = [ { 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 = { renderCell: (checked, _record, index, node) => ({ props: { rowSpan: index % 2 === 0 ? 2 : 0 }, children: ( <> {String(checked)}: {node} ), }), }; return ; }; export default App; ```