我设法使用以下方法更改了 Kendo Grid 的默认过滤器顺序:
.Filterable(filterable => filterable
.Extra(true)
.Operators(ops =>
ops.ForString(str => str.Clear()
.Contains("Contains")
.StartsWith("Starts with")
.EndsWith("Ends with")
.IsEqualTo("Is equal to"))
))
有什么办法可以将默认运算符更改为 OR?