Reactjs – How to not sort a row while sorting in MUI X Data Grid
Question: Is there a way to not sort the "Total" row while Sorting? Thanks in advance <DataGrid rows={dataSource} columns={dataColumns} initialState={{ sorting: { sortModel: [{field: 'Total', sort: 'desc'}] } }} components={{ Toolbar: CustomToolbar, NoRowsOverlay: EmptyRows, }} getRowId={(row) => row.value} filterMode="client" filterModel={filterModal}…