I have a default column filter and I'm wondering if there is a way from excluding it from one column. You can check an example from React-table that I'm using: https://codesandbox.io/s/github/tannerlinsley/react-table/tree/master/examples/filtering
The 'DefaultColumnFilter' is being used in useTable hook and all columns are using it by default
Is there a way from excluding one column from using it?
Two options -
If you don't want the given column to have filters, then use
disableFiltersflag on that column in options.If you want to have different type of filter for the given column, then use
Filterproperty in the given column(as shown in provided example)