admin管理员组

文章数量:1339197

How do I enable column resize for user on MUI X Data Grid, it is enable by default on XGrid, but I want to enable it on DataGrid, please help.

   <DataGrid
       className={classes.table}                
       autoHeight
       disableColumnMenu
       rows={rows}
       columns={columns}
       pageSize={50}
       onPageChange={handlePageChange}
       rowCount={rowCount}
       paginationMode="server"
       loading={loading}
       rowsPerPageOptions={[]}
     />

How do I enable column resize for user on MUI X Data Grid, it is enable by default on XGrid, but I want to enable it on DataGrid, please help.

   <DataGrid
       className={classes.table}                
       autoHeight
       disableColumnMenu
       rows={rows}
       columns={columns}
       pageSize={50}
       onPageChange={handlePageChange}
       rowCount={rowCount}
       paginationMode="server"
       loading={loading}
       rowsPerPageOptions={[]}
     />
Share Improve this question edited Mar 27 at 6:47 Olivier Tassinari 8,6916 gold badges25 silver badges28 bronze badges asked Jul 24, 2021 at 11:54 Mausom SaikiaMausom Saikia 1701 gold badge1 silver badge10 bronze badges 2
  • There is a prop resizable on GridColDef interface. You provide list of column definitions to the columns prop on DataGrid. Maybe the solution is to set it on column level. – Sebastian.Belczyk Commented Jul 24, 2021 at 12:53
  • Upgrade to v7 solved it – Nijat Aliyev Commented May 2, 2024 at 21:11
Add a ment  | 

2 Answers 2

Reset to default 12

If you are using MUI V6, resizable columns are available only in the ercial version (XGrid).

In the new V7 it is available to the free MIT version https://mui./x/react-data-grid/#mit-version-free-forever

Since MUI X v7.0.0 column resizing and auto-sizing are now available on the munity plan. source

本文标签: javascriptHow to enable column resize on MUI X Data GridStack Overflow