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: {}
Source:stackexchange.com