Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1810
iggrid filtering clear filter by program seems bug
posted

Hi

in one business scenario we have to clear applied filter from grid by jquery for that we are doing

$("#grid1").igGridFiltering("filter", []);

and 

var $gridFiltering = $("#grid1").data("igGridFiltering");
            var editors = $gridFiltering._editors;
            for (var itr = 0; itr < editors.length; itr++) {
                     if (editors[itr].value != undefined && editors[itr].value != null) {
                                editors[itr].value(null);
                     }
            }

its work fine for all cells but in one case where grid filter is applied "Not Empty" or "Empty" it doesn't work.

is it bug. or is there any better way to clear filter and reset filter text/expression.

looking for your response

Thanks