clear autofilter and sorting

Hello,

I really like this library. But I have another Question. It would be nice anyone would answer.

How is it possible to clear all Autofilters in the grid? And the sorting?

What do you mean by autofilters?
In case of filters created by #text_filter and similar, you can use

grid.getFilterElement(i).value = “”;

to clear filter’s value. Here “i” - index of column, for which operation need to be executed.

as for sorting, you can hide sort image by using

grid.setSortImgState(false);