Antd Tree:我想默认禁用检查子项
我正在使用 React 和 Antd 并使用 Tree 组件,我有我的树数据,我希望能够只检查父母,当我检查父母时,他的所有孩子也会被检查,但我不想只能检查父母的一些孩子.. 我可以禁用孩子的选中功能并仅向父母显示它吗?
谢谢
I'm using React with Antd and working with Tree Component, i have my Tree Data and I want to be able to check only parents, and when I check a parent all his child are checked also, but I don't want to be able to check only some child of a parent..
Can I disable checked feature on childs and display it only for parent ?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须仅为
children
节点添加一个属性checkable: false
,不要用于父节点,到您的数据treeData
,工作代码 < a href="https://codesandbox.io/s/control-tree-antd-4-18-9-forked-i52zr8?file=/index.js" rel="nofollow noreferrer">https://codesandbox.io/s/control-tree-antd-4-18-9-forked-i52zr8?file=/index.js
you have to add one property,
checkable: false
for thechildren
nodes only, dont use for parent, to your datatreeData
,working code https://codesandbox.io/s/controlled-tree-antd-4-18-9-forked-i52zr8?file=/index.js