React-table exclude default column filter

Viewed 620
1 Answers

Two options -

  1. If you don't want the given column to have filters, then use disableFilters flag on that column in options.

  2. If you want to have different type of filter for the given column, then use Filter property in the given column(as shown in provided example)

Related