最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to enable column resize on MUI X Data Grid - Stack Overflow

programmeradmin3浏览0评论

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

发布评论

评论列表(0)

  1. 暂无评论