ant-design / pro-table

🏆 Use Ant Design Table like a Pro!
https://protable.ant.design/
MIT License
562 stars 151 forks source link

🧐[问题]ProTable 配置 expandable (defaultExpandAllRows:true不生效) #395

Open Gllidan opened 4 years ago

Gllidan commented 4 years ago

🧐 问题描述 [详细地描述问题,让大家都能理解]

尝试antd配置tree table默认展开不生效,忘大佬指点。。。

💻 示例代码 [如果有必要,展示代码,线上示例,或仓库]

🚑 其他信息 [如截图等其他信息可以贴在这里]

image

gzelda commented 4 years ago

defaultExpandAllRows:true 是渲染的瞬间判断,而不是状态持续判断。渲染的一瞬间expandable的table还没有数据,所以没有渲染出来。

使用 defaultExpandedRowKeys 可以实现tree table的默认展开效果

gzelda commented 4 years ago

https://www.cnblogs.com/steamed-twisted-roll/p/12997220.html

可以看一下这个帖子

Gllidan commented 4 years ago

https://www.cnblogs.com/steamed-twisted-roll/p/12997220.html

可以看一下这个帖子

收到,谢谢大佬回复