Borvik / ts-datatable

1 stars 6 forks source link

✨ Column Level Search #72

Closed 1Carolus1 closed 8 months ago

1Carolus1 commented 8 months ago

Added new functionality for column-level search.

if the data table sets enableColumnSearch to true and, AND the column specified with the columnSearch:

type ColumnSearch = {
  enabled: boolean
  op?: AllFilterOperators
  renderSearchButton?: boolean
}

the users can perform a column-level search. Unless specified otherwise, the column-level search uses 'con' operation by default.

image