kendo-ui-core icon indicating copy to clipboard operation
kendo-ui-core copied to clipboard

Change the default filter operator when using the Filter Multi Checkboxes

Open kendo-bot opened this issue 3 years ago • 0 comments

Is it possible to implement an option for the Telerik UI for ASP.NET Core Grid to change the default filter operator "eq" to "contains" when the Grid column checkbox filter menu is enabled?

For example:

columns.Bound(p` => p.ShipName)
  .Filterable(ftb => ftb
    .Multi(true)
    .Search(true)
    .Operators(op => op
      .ForString(s => s
        .Clear()
        .Contains("Contains")
)));

//Filter expression:
filter: ShipName~contains~'test'

kendo-bot avatar Jun 29 '22 10:06 kendo-bot