How to check for presence of filters?

Is it possible to check for the presence of non-blank filters on a DHTMLX Grid?



Also, is there a simple way to clear them, besides using grid.getFilterElement?



Thank you!

Is it possible to check for the presence of non-blank filters on a DHTMLX Grid
You can do the following:
var filter=grid.getFilterElement(index);
filter.value=“some_value”

>>Also, is there a simple way to clear them, besides using grid.getFilterElement
filter - is a reference to the filter html object. So you can use any available DOM API methods for it