Kendo Grid MVC: default filter for string fields is set to “is equal to”
问题 Kendo Grid has default filter for "dt" field "is equal to" with calendar. For "name" field it has default filter "is equal to", but I want to move "Contains" to a first place of an option list and make it default for strings. How could it be implemented? public class MyClass { public DateTime dt { get; set; } public string name { get; set; } } @(Html.Kendo() .Grid<MyClass>() .Name("grid") .DataSource(data => data.Ajax() .ServerOperation(false) .Read(read => read.Action("MyAction",