I want to remove the Select All checkbox which is at the top of the checkbox datacolumn.
checkboxSelection
adds checkboxes for every row but also adds the select all checkbox on top in the header. How can i remove this?
I want to remove the Select All checkbox which is at the top of the checkbox datacolumn.
checkboxSelection
adds checkboxes for every row but also adds the select all checkbox on top in the header. How can i remove this?
Share Improve this question asked Sep 13, 2022 at 9:40 akshay_acharyaakshay_acharya 892 silver badges11 bronze badges1 Answer
Reset to default 8I had the same problem and was looking at the MUI-X git. I found a solution for this, is hide the header of the checkbox, so in that way you will remove the select all behavior.
Hope this works for you as well.
Here is the original solution on git: https://github./mui/mui-x/issues/1904#issuement-1219293315
<DataGrid
...
sx={{
"& .MuiDataGrid-columnHeaderCheckbox .MuiDataGrid-columnHeaderTitleContainer": {
display: "none"
}
}}/>
Example