NoRowsOverlay is not working once you apply the filter and as a result there is/are no rows to display.
Here is my code:
function customNoRowsOverlay() {
return (
<GridOverlay>
<div>No Rows</div>
</GridOverlay>
)
}
components={{ NoRowsOverlay: customNoRowsOverlay }}
I need to display 'No Rows' Message if there is/are no rows to display after applying filter. However the above code works if you have rows={[]}
