jmsbrett

Results 4 comments of jmsbrett

I had this issue and could not solve it with the above solutions. Uninstalling and re-installing then rebuild worked for me: ````` npm uninstall @mui/icons-material @mui/material npm install @mui/icons-material @mui/material...

I have a working solution. It involves editing the cell.js file and then passing in the width prop. So it is like this: `width={widthArr[cellIndex]}` the widthArr is used for the...

This is actually a better solution using a partial: ` const textDom = React.isValidElement(data) ? ( {data} ) : ( {data} );` The cell.js file is in the actual npm...

@KevinMac19 So I will try to walk you through this. Please read the entire post before changing any code This was a solution as of the original posting date. 1....