[Vuejs]-How do I get the current datasource filter for a grid with Kendo UI for Vue?

0πŸ‘

βœ…

I figured it out. You have to assign the filter object like this:

    filterConfiguration: {
       logic: "or",
       filters: [
         { field: "ProductName", operator: "startswith", value: "c" }
       ]
     }

Or if you don’t want to load the grid with any preset filters, you need at least this:

    filterConfiguration: {
        filters: []
     }

This will not work:

    filterConfiguration: {}

Leave a comment