[Solved] Kendo UI Grid – Add/Remove filters dynamically
In order to filter by text box you can hook up a keyUp event in order to retrieve the value. You can then add this as a filter to the existing filter object. $(‘#NameOfInput’).keyup(function () { var val = $(‘#NameOfInput’).val(); var grid = $(“#yourGrid”).data(“kendoGrid”); var filter = grid.dataSource.filter(); filter.filters.push({ field: “NameOfFieldYouWishToFilter”, operator: “eq”, value: val, … Read more