在ant design的免费版本中使用传输组件并尝试更改表的标题文本
如何做呢?
AntDesign 文档非常贫乏,没有提及它,我不想相信它不存在,
您可以使用 title 和 selectAllLabels 属性来编辑标题。这两个属性都接受数组。(如果您仍然无法使用这些道具,请检查您的 antd 版本)
titles={[<Tag color="geekblue">I am on Left</Tag>, <Tag color="geekblue">I am on right</Tag>]}
selectAllLabels={[
({ selectedCount, totalCount }) => (
<span>
{selectedCount} of {totalCount}
<Tag color="geekblue">left</Tag>
</span>
), ({ selectedCount, totalCount }) => (
<span>
{selectedCount} of {totalCount}
<Tag color="geekblue">right</Tag>
</span>
)
]}
Run Code Online (Sandbox Code Playgroud)
示例代码盒
https://codesandbox.io/s/table-transfer-ant-design-demo-v4wxj?file=/index.js:2936-3517
| 归档时间: |
|
| 查看次数: |
2365 次 |
| 最近记录: |