mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 13:08:41 +08:00
1.1 KiB
1.1 KiB
order | debug | title | ||||
---|---|---|---|---|---|---|
99 | true |
|
zh-CN
自定义穿梭框全选按钮的文字。
en-US
Custom the labels for select all checkboxs.
import { Transfer } from 'antd';
import type { SelectAllLabel } from 'antd/es/transfer';
import React, { useState } from 'react';
interface RecordType {
key: string;
title: string;
description: string;
}
const mockData: RecordType[] = Array.from({ length: 10 }).map((_, i) => ({
key: i.toString(),
title: `content${i + 1}`,
description: `description of content${i + 1}`,
}));
const oriTargetKeys = mockData.filter(item => Number(item.key) % 3 > 1).map(item => item.key);
const selectAllLabels: SelectAllLabel[] = [
'Select All',
({ selectedCount, totalCount }) => `${selectedCount}/${totalCount}`,
];
const App: React.FC = () => {
const [targetKeys, setTargetKeys] = useState(oriTargetKeys);
return (
<Transfer
dataSource={mockData}
targetKeys={targetKeys}
onChange={setTargetKeys}
render={item => item.title}
selectAllLabels={selectAllLabels}
/>
);
};
export default App;