External filter function provided to the table #3815
-
Hey so im exploring react table, and want to be able to pass a function to the table that will filter it based on the data of Is there a way to implement that using the example of a custom (external filter)
and then the table will be filtered accordingly, and respond to the I've been following the docs but nothing seems to work for the use case. Thx |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You could easily use a column filter to do this, or a global filter, or you could even manually filter it with |
Beta Was this translation helpful? Give feedback.
You could easily use a column filter to do this, or a global filter, or you could even manually filter it with
useMemo
before passing it to the table.