Unplanned
Last Updated: 29 Jun 2022 10:02 by Akesh Gupta
Akesh Gupta
Created on: 29 Jun 2022 10:02
Category: Grid
Type: Feature Request
1
Change the default filter operator when using the Filter Multi Checkboxes

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'

0 comments