I’m looking for a way to take user input and use said input in a “filter” function which returns all objects where the value of some property contains the input string. Then the table is redrawn with the new data set.
Would you bind to the keydown event using debounce and then call a function that does the filtering on the underlying table data? Any other approaches? Any plug-ins that already handles this use-case?
If you are wanting to create a more complex filter (multiple properties, regex) it would be better to tie the inputs into a filterService and access that in the valueConverter.