Filter allow text input >= text

Hey @agaitan026! There are a couple of options here.

  1. Filter the current table data that has been fetched already. This will use a JS query to filter based on the text input and does everything client side.
  2. Re-trigger the underlying data query with the text input filters applied.

For #1, something like this should work:

JS Filter:

Filtered Table:

Clear Filter Script:

For #2 it depends on the data query and how filters can be applied to it, but likely something similar to parse the text input value.

1 Like