material-table-core / core

Datatable for React based on material-ui's table with additional features. Support us at https://opencollective.com/material-table-core
https://material-table-core.github.io
MIT License
296 stars 146 forks source link

Show filtered count of rows instead of total count #780

Closed tejaswikarasani2001 closed 1 year ago

tejaswikarasani2001 commented 1 year ago

I want show the filtered count instead of total count. Can the team add this feature in the new release?

This is screenshot of the original table which is pagination to show 5 rows per each page

image

This is the screenshot when filtered Name column with "M" which matches with only one row but the count on the bottom still shows the "5"

image
Domino987 commented 1 year ago

Well this is not the count. But the rows per page. The count is next to it, in the second screenshot it is 1 of 1. You can always override the component, if that would help you.

tejaswikarasani2001 commented 1 year ago

Thank you!