mui 数据网格与 React-dnd

发布于 2025-01-16 20:15:43 字数 143 浏览 1 评论 0原文

我曾经有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

栀子花开つ 2025-01-23 20:15:43

您可以使用components props覆盖默认组件。
像这样:

<DataGrid
    apiRef={apiRef}
    columns={cols}
    rows={rows}
    treeData={typeof treeKey !== "undefined"}
    getTreeDataPath={(row: any) => row[treeKey]}
    groupingColDef={groupingColDef}
    rowsPerPageOptions={[10, 20, 50]}
    pagination={true}
    disableColumnFilter
    experimentalFeatures={{ newEditingApi: true }}
    autoHeight
    editMode="row"
    rowModesModel={rowModesModel}
    onRowModesModelChange={(newModel) => setRowModesModel(newModel)}
    onCellDoubleClick={handleCellDoubleClick}
    onRowEditStart={handleRowEditStart}
    onRowEditStop={handleRowEditStop}
    processRowUpdate={processRowUpdate}
    initialState={{
        pagination: {
            pageSize: 10
        }
    }}
    components={{
        Toolbar,
        NoRowsOverlay,
        Row: DndRow     // this is it in your case
    }}
    componentsProps={{
        toolbar: {
            selectedCellParams,
            richToolbar
        },
        cell: {
            onFocus: handleCellFocus
        },
        row: {
            onContextMenu: handleContextMenu,
            style: { cursor: "context-menu" }
        }
    }}
/>

You can override default components using components props.
Like this:

<DataGrid
    apiRef={apiRef}
    columns={cols}
    rows={rows}
    treeData={typeof treeKey !== "undefined"}
    getTreeDataPath={(row: any) => row[treeKey]}
    groupingColDef={groupingColDef}
    rowsPerPageOptions={[10, 20, 50]}
    pagination={true}
    disableColumnFilter
    experimentalFeatures={{ newEditingApi: true }}
    autoHeight
    editMode="row"
    rowModesModel={rowModesModel}
    onRowModesModelChange={(newModel) => setRowModesModel(newModel)}
    onCellDoubleClick={handleCellDoubleClick}
    onRowEditStart={handleRowEditStart}
    onRowEditStop={handleRowEditStop}
    processRowUpdate={processRowUpdate}
    initialState={{
        pagination: {
            pageSize: 10
        }
    }}
    components={{
        Toolbar,
        NoRowsOverlay,
        Row: DndRow     // this is it in your case
    }}
    componentsProps={{
        toolbar: {
            selectedCellParams,
            richToolbar
        },
        cell: {
            onFocus: handleCellFocus
        },
        row: {
            onContextMenu: handleContextMenu,
            style: { cursor: "context-menu" }
        }
    }}
/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文