Reset Single Column Filter and preserve others

I have a Grid with several columns.
I’m applying filters by using the function:
grid.filterBy(0,“Argentina”);
grid.filterBy(1,“Indirect”, true);

It works perfectly.

Now, when i want to filter again column 0 but preserving column 1 filter, the grid only has ‘Argentina’ and no other value.
If i try to reset the filter on column 0 before filtering again its not responding:
grid.filterBy(0,"",true);

Is there any function to reset a single column filter and keep the rest of the filters ???

Thank You !!!

Best Regards,
Francisco

You can’t reset only one filtering rule.
There are only tow modes

  • New filtering rule can be added to the previous one
  • New filtering rule can resets all previous rules