What if I have many columns? How could I find a specific filter field?
I’m using angular 7.
My current problem is that I customized a column to filter by 2 data fields (lets say “description” if value isNaN or “code” if value is a valid number) my column is mapped for dataField “description” so when the filter by description is used everything is OK and it clears correctly when the field becomes empty. But, if it filtered by code, the filter group stay on data parameter of filter’s callback function (I understand that it is because the column is controlling description, not code).
I need to control manually the changes on this filter (only this one without resetting the grid filters). I didn’t want to place a custom filter field just to control this simple mechanism so, how could I get this specific column filter field?
There is some way to capture the field with grid API or set it a unique identifier without creating a filter widget instead of using common filter field?