How to add a button to every row in MUI X DataGrid
You can add your custom component by overriding GridColDef.renderCell method and return whatever element you want. The example below displays an action column that renders a single button in each row. When clicking the button, it alerts the current row data in JSON string: const columns: GridColDef[] = [ { field: “id”, headerName: “ID”, width: … Read more