[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

[Solved] Kendo UI Grid Data variable Vue.js

Yes, instead of using a data-source-ref, you can bind to a data-source property. This can be an instance of an kendo DataSource or a simple array. For example, here’s the default demo, changed to bind to an array of objects. var products = [{ “ProductID”: 1, “ProductName”: “Chai”, “UnitPrice”: 18, “UnitsInStock”: 39, “Discontinued”: false }, … Read more