admin管理员组文章数量:1344645
I'm creating a custom Data Grid Toolbar
ponent by modifying existing Grid Toolbar
ponents from Material UI v4.
Here is the official example for the Grid Toolbar
ponents:
If we click one of the Grid Toolbar
ponents, it will show a popup/popper as seen in the screenshot below.
What I want to do is to change all font sizes inside every popup/popper from each Grid Toolbar
ponent.
I try to change one text for example.
As we can see from the screenshot below, if we inspect the text then change the font-size
and color
properties directly, it would change.
But if I grab and copy the selector (in this case is .MuiTypography-body1
), then I paste it in my code, there nothing changes (the font-size
and color
properties don't change).
Here is the simple code:
const CustomGridToolbarColumns = withStyles((theme) => ({
root: {
color: "dodgerblue",
"& .MuiTypography-body1": {
fontSize: 20,
color: "red"
}
}
}))(GridToolbarColumnsButton);
I also want to change all font-size
and color
properties inside each popup/popper of each Grid Toolbar
ponent.
I inspect the popup/popper then change the font-size
and color
properties but still don't work as seen in the screenshot below.
Here are the dependencies (in package.json file):
"@material-ui/core": "^4.12.3",
"@material-ui/styles": "^4.11.4",
"@mui/x-data-grid-pro": "^4.0.0",
Here is the full code:
So my questions are:
- how can we change some properties inside the popup/popper of every
Grid Toolbar
ponent? - how can we change all properties inside the popup/popper of every
Grid Toolbar
ponent?
I'm creating a custom Data Grid Toolbar
ponent by modifying existing Grid Toolbar
ponents from Material UI v4.
Here is the official example for the Grid Toolbar
ponents:
If we click one of the Grid Toolbar
ponents, it will show a popup/popper as seen in the screenshot below.
What I want to do is to change all font sizes inside every popup/popper from each Grid Toolbar
ponent.
I try to change one text for example.
As we can see from the screenshot below, if we inspect the text then change the font-size
and color
properties directly, it would change.
But if I grab and copy the selector (in this case is .MuiTypography-body1
), then I paste it in my code, there nothing changes (the font-size
and color
properties don't change).
Here is the simple code:
const CustomGridToolbarColumns = withStyles((theme) => ({
root: {
color: "dodgerblue",
"& .MuiTypography-body1": {
fontSize: 20,
color: "red"
}
}
}))(GridToolbarColumnsButton);
I also want to change all font-size
and color
properties inside each popup/popper of each Grid Toolbar
ponent.
I inspect the popup/popper then change the font-size
and color
properties but still don't work as seen in the screenshot below.
Here are the dependencies (in package.json file):
"@material-ui/core": "^4.12.3",
"@material-ui/styles": "^4.11.4",
"@mui/x-data-grid-pro": "^4.0.0",
Here is the full code: https://codesandbox.io/s/data-grid-material-ui-custom-toolbar-kd9gj
So my questions are:
- how can we change some properties inside the popup/popper of every
Grid Toolbar
ponent? - how can we change all properties inside the popup/popper of every
Grid Toolbar
ponent?
1 Answer
Reset to default 9You can inspect the element and see that the ponent you need to apply the style to is called GridPanel
. This is the wrapper ponent of the filters and columns panel. See all the ponent slots here for reference.
V5
<DataGrid
{...data}
ponents={{
Toolbar: GridToolbar,
}}
ponentsProps={{
panel: {
sx: {
'& .MuiTypography-root': {
color: 'dodgerblue',
fontSize: 20,
},
'& .MuiDataGrid-filterForm': {
bgcolor: 'lightblue',
},
},
},
}}
/>
In order to change the styles of the other 2 GridMenu
s (density/export), you need to target the MuiDataGrid-menuList
class name. Currently I see there is no other way around using global styles because DataGrid
does not allow you to customize the GridMenu
ponent:
<GlobalStyles
styles={{
'.MuiDataGrid-menuList': {
backgroundColor: 'pink',
'& .MuiMenuItem-root': {
fontSize: 26,
},
},
}}
/>
V4
import { DataGrid, GridToolbar, GridPanel } from "@mui/x-data-grid";
const useStyles = makeStyles({
panel: {
'& .MuiTypography-root': {
color: 'dodgerblue',
fontSize: 20,
},
},
});
<DataGrid
{...data}
ponents={{
Toolbar: GridToolbar,
}}
ponentsProps={{
// GridPanel
panel: { className: classes.panel },
}}
/>
<GlobalStyles
styles={{
".MuiDataGrid-gridMenuList": {
backgroundColor: "pink",
"& .MuiMenuItem-root": {
fontSize: 26
}
}
}}
/>
本文标签: javascriptAdd custom style inside DataGrid Toolbar39s popup MUI X componentStack Overflow
版权声明:本文标题:javascript - Add custom style inside DataGrid Toolbar's popup MUI X component - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743735954a2530012.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论