mui 数据网格与 React-dnd
我曾经有一个 mui treeview,它很容易用react-dnd扩展,因为treeitem是一个react组件。
然而,在数据网格中,行是 JSON 对象的数组,不再是 React 组件。 有什么方法可以让我更新数据网格中的“子组件”以通过拖放来增强它?
I used to have a mui treeview which is simple to extend with react-dnd because treeitem is a react component.
In a datagrid however, the row are an array of JSON object and not a react component anymore.
Is there any way for me to update the "sub-component" within the datagrid to enhance it with dragndrop ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
components props
覆盖默认组件。像这样:
You can override default components using
components props
.Like this: