admin管理员组文章数量:1344938
I'm using the DataGridPremium component from MUI X, and I want to aggregate only one column, "amount", using the sum function.
<DataGridPremium
aggregationModel={{
amount: 'sum',
}}
...
/>
In addition, I explicitly set aggregable: false on all other columns, like so:
export const MarketplaceColumn: GridColDef = {
flex: 1,
field: 'marketplaceId',
headerName: 'Marketplace',
headerAlign: 'center',
sortable: true,
aggregable: false,
sortComparator: (v1, v2) => {
return v1.localeCompare(v2);
},
renderHeader: params => renderHeaderColumn(params),
renderCell: params => {
const marketplace = useGetMarketplace(params.value);
return (
<Box component={'div'} className="h-full flex items-center justify-center">
<MarketplaceIcon marketplaceId={marketplace?._id} />
</Box>
);
},
};
export const AmountColumn: GridColDef = {
field: 'amount',
headerAlign: 'center',
align: 'center',
flex: 1,
aggregable: true,
type: 'number',
preProcessEditCellProps: params => {
const hasError = params.props.value < 0;
return {
...params,
error: hasError,
helperText: hasError ? 'Amount must be greater than 0' : '',
};
},
renderEditCell: params => <TooltipWrapper {...params} />,
valueFormatter: value => formatCurrency(value as number),
headerName: 'Amount',
renderHeader: params => renderHeaderColumn(params),
};
Despite this, the footer row is still displaying aggregation values or empty cells under those other columns (like marketplace, brand, etc.).
I also tried removing the initialState.aggregation.model completely, and kept only the aggregationModel as shown above — but the issue still persists.
Look the table.
I'm using the DataGridPremium component from MUI X, and I want to aggregate only one column, "amount", using the sum function.
<DataGridPremium
aggregationModel={{
amount: 'sum',
}}
...
/>
In addition, I explicitly set aggregable: false on all other columns, like so:
export const MarketplaceColumn: GridColDef = {
flex: 1,
field: 'marketplaceId',
headerName: 'Marketplace',
headerAlign: 'center',
sortable: true,
aggregable: false,
sortComparator: (v1, v2) => {
return v1.localeCompare(v2);
},
renderHeader: params => renderHeaderColumn(params),
renderCell: params => {
const marketplace = useGetMarketplace(params.value);
return (
<Box component={'div'} className="h-full flex items-center justify-center">
<MarketplaceIcon marketplaceId={marketplace?._id} />
</Box>
);
},
};
export const AmountColumn: GridColDef = {
field: 'amount',
headerAlign: 'center',
align: 'center',
flex: 1,
aggregable: true,
type: 'number',
preProcessEditCellProps: params => {
const hasError = params.props.value < 0;
return {
...params,
error: hasError,
helperText: hasError ? 'Amount must be greater than 0' : '',
};
},
renderEditCell: params => <TooltipWrapper {...params} />,
valueFormatter: value => formatCurrency(value as number),
headerName: 'Amount',
renderHeader: params => renderHeaderColumn(params),
};
Despite this, the footer row is still displaying aggregation values or empty cells under those other columns (like marketplace, brand, etc.).
I also tried removing the initialState.aggregation.model completely, and kept only the aggregationModel as shown above — but the issue still persists.
Look the table.
Share Improve this question asked yesterday KruNNzAKruNNzA 92 bronze badges1 Answer
Reset to default 0To prevent unwanted content in aggregation rows, use the isAutogeneratedRow
helper from @mui/x-data-grid-premium
inside renderCell or valueFormatter:
import { isAutogeneratedRow } from '@mui/x-data-grid-premium';
{
field: 'marketplaceId',
headerName: 'Marketplace',
aggregable: false,
renderCell: (params) => isAutogeneratedRow(params) ? null : params.value,
}
本文标签:
版权声明:本文标题:reactjs - MUI X DataGridPremium shows aggregation for other columns even though only one column is in the aggregationModel - Sta 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743784579a2538449.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论